-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterests.html
52 lines (50 loc) · 1.59 KB
/
interests.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
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Interests</title>
</head>
<body>
<header>
<!-- navbar -->
<nav>
<table>
<thead>
<tr>
<td><a href="about.html">About</a></td>
<td><a href="skills.html">Skills</a></td>
<td><a href="education.html">Education</a></td>
<td><a href="experience.html">Experience</a></td>
<td id="activePage">Interests</td>
<!-- <td><a href="contact.html">Contact</a></td> -->
</tr>
</thead>
</table>
</nav>
</header>
<div id="pageContent">
<div id="pictureAndName">
<!-- image -->
<img src="RickAstley.png" alt="Rick Astley">
<!-- Title -->
<h1>Rick Astley</h1>
<p id="title">Singer, Songwriter</p>
<p id="email">[email protected]</p>
</div>
<div id="content">
<h5>Interests</h5>
<li>- Reading</li>
<li>- Programming</li>
<li>- Playing the violin</li>
<li>- Running</li>
<li>- Photography (see my work on <a id="pinterest" href="https://www.pinterest.com/hdj1814/rick-astley/" target="_blank">Pinterest</a>)</li>
</div>
</div>
<footer>
<p>©Vishnu Dhanda 2023</p>
</footer>
</body>
</html>