-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jack Skates - Home</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="bio.html">Bio</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<img src="images/profile-photo.jpeg" alt="Your Photo" id="profile-photo">
<h1>Jack Skates - Software Engineer</h1>
<p class="mission">To boldy go where no man has gone before (be a Software Engineer)</p>
<blockquote class="quote">"The moral of the story is not to listen to those who tell you not to play the violin but stick to the tambourine" – José Mourinho </blockquote>
</section>
</main>
<footer>
<p>© 2024 Jack Skates</p>
</footer>
</body>
</html>