-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.HTML
More file actions
36 lines (34 loc) · 1.28 KB
/
Home.HTML
File metadata and controls
36 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blake Jones | Home</title>
<link rel="stylesheet" href="style.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 class="intro">
<h1>Welcome to Blake Jones' Personal Website</h1>
<p>Hello! My name is Blake Jones, a System Engineer, Football Coach, and a proud father. I’m passionate about technology, youth sports, and continuous learning. Welcome to my online portfolio!</p>
<p>"Success is no accident. It is hard work, perseverance, learning, studying, sacrifice, and most of all, love of what you are doing." - Pele</p>
<div class="home-section">
<img src=".\Photo\Self Pic.jpeg" alt="Photo of Blake Jones" class="home-photo">
</div>
</section>
</main>
<footer>
<p>© 2024 Blake Jones</p>
</footer>
</body>
</html>