-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (72 loc) · 2.54 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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>About</title>
</head>
<body>
<header>
<!-- navbar -->
<nav>
<table>
<thead>
<tr>
<td id="activePage">About</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><a href="interests.html">Interests</a></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 class="content" id="content">
<h5>About</h5>
<p id="whoIAm">I'm an English singer, songwriter and radio personality, who has been active in music for several decades. You've
probably already seen my video by clicking on random links on the Internet!
</p>
<p>A few points about me: I will never</p>
<table>
<thead>
<tr>
<td><input type="checkbox" checked>Give You Up</td>
<td><input type="checkbox" checked>Make You Cry</td>
</tr>
<tr>
<td><input type="checkbox" checked>Let You Down</td>
<td><input type="checkbox" checked>Say Goodbye</td>
</tr>
<tr>
<td><input type="checkbox" checked>Run Around</td>
<td><input type="checkbox" checked>Tell A Lie</td>
</tr>
<tr>
<td><input type="checkbox" checked>Desert You</td>
<td><input type="checkbox" checked>Hurt You</td>
</tr>
</thead>
</table>
<!-- BONUS -->
<h3>My latest single</h3>
<audio controls src="single.mp3"></audio>
</div>
</div>
<footer>
<p>©Vishnu Dhanda 2023</p>
</footer>
</body>
</html>