-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBio.HTML
More file actions
37 lines (35 loc) · 1.35 KB
/
Bio.HTML
File metadata and controls
37 lines (35 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blake Jones | Bio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="Home.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="bio">
<h1>About Me</h1>
<p>Hi, I’m Blake Jones, a youth football coach with the Blue Raider Athletic Association and a devoted father of two wonderful boys. I’ve always been passionate about shaping young minds and helping them grow both on and off the field. Outside of coaching, I love spending time with my family and playing video games to unwind.</p>
<div class="image-row">
<img src=".\Photo\Family Pic.jpeg" alt="Family Photo">
<img src=".\Photo\Football Pic.jpeg" alt="Football Coaching">
<img src=".\Photo\Coaching Pic.jpeg" alt="Blake Coaching Photo">
</div>
</section>
</main>
<footer>
<p>© 2024 Blake Jones</p>
</footer>
</body>
</html>