-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterests.html
More file actions
45 lines (43 loc) · 1.55 KB
/
interests.html
File metadata and controls
45 lines (43 loc) · 1.55 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="style.css"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height">
<title>Interests</title>
</head>
<body>
<nav>
<ul>
<a hover class="nav-item" href="index.html">About</a>
<a hover class="nav-item" href="skills.html">Skills</a>
<a hover class="nav-item" href="education.html">Education</a>
<a hover class="nav-item" href="experience.html">Experience</a>
<a class="nav-current">Interests</a>
</ul>
</nav>
<main>
<div class="main-left">
<img src="https://static.wikia.nocookie.net/parody/images/f/fd/Rick-Astley.jpg" alt="Rick Astley">
<h1>Rick Astley</h1>
<h3>Singer, Songwriter</h3>
<p>rick.astley@meme.com</p>
</div>
<div class="main-right alt">
<h1>Interests</h1>
<ul style="font-size:110%; width:400px">
<li style="margin-bottom:10px;">- Reading</li>
<li style="margin-bottom:10px;">- Programming</li>
<li style="margin-bottom:10px;">- Playing the violin</li>
<li style="margin-bottom:10px;">- Running</li>
<li style="margin-bottom:10px;">- Music (see my work on <a id="linkchange" hover href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank">Youtube</a>)</li>
<li style="margin-bottom:10px;">- Dancing</li>
</ul>
<br>
</div>
</main>
<footer>
©FindlayMB 2023
</footer>
</body>
</html>