-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 2.02 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 2.02 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
46
47
48
49
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href="style.css"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>About</title>
</head>
<body>
<nav>
<ul>
<a class="nav-current">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 hover class="nav-item" href="interests.html">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">
<h1>About</h1>
<p> 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>
<ul>
<li><input type="checkbox" checked>Give You Up</li>
<li><input type="checkbox" checked>Make You Cry</li>
<li><input type="checkbox" checked>Let You Down</li>
<li><input type="checkbox" checked>Say Goodbye</li>
<li><input type="checkbox" checked>Run Around</li>
<li><input type="checkbox" checked>Tell A Lie</li>
<li><input type="checkbox" checked>Desert You</li>
<li><input type="checkbox" checked>Hurt You</li>
</ul>
</div>
</main>
<footer>
©FindlayMB 2023
</footer>
</body>
</html>