-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathon-the-side.html
49 lines (49 loc) · 1.71 KB
/
on-the-side.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html5>
<!-- Good job! You found the developer tools! This shows you the code that creates the webpage you're seeing. -->
<!-- These webpages are structured in HTML, styled with CSS, and a couple extra pieces use JavaScript! -->
<!-- P.S. In case you want to collab, I also use PHP, JavaScript, Python, and frameworks galore. -->
<head>
<title>Leo Gilmour</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<header>
<a class="home" href="./index.html" id="home">leo gilmour:</a>
<hr />
<a class="web-developer" href="./web-developer.html">Web developer</a
><a class="tutoring" href="./tutoring.html">Tutoring</a
><a class="on-the-side" href="./on-the-side.html"
>On<br />The<br />Side<br
/></a>
<hr />
<a class="coding-resources" href="./coding-resources.html"
>Coding resources</a
><a class="maths-resources" href="./maths-resources.html"
>Maths++ resources</a
><a class="workshops" href="./workshops.html">Workshops</a>
<hr />
</header>
<!-- this one time, I made a podcast -->
<!-- link to stylist article with me -->
<div id="content">
<div class="round">
<img src="./images/headshot.jpg" alt="my headshot" />
</div>
<h1 class="coding-resources">on the side:</h1>
I love fancy dress and creating events with a theme. hiligh? blog? poscast
</div>
<footer>
<hr />
<div class="social">
<a href="">LI</a>
<a href="">IG</a>
</div>
<a href="mailto:[email protected]">[email protected]</a>
<div class="social">
<a href="">IG</a>
<a href="">TT</a>
</div>
<hr />
</footer>
</body>