-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
36 lines (36 loc) · 1.13 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Data Science Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>A.J. Hoyt</h1>
<p>Data Science Major</p>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="https://www.linkedin.com/in/ajhoyt" target="_blank">Contact</a></li>
</ul>
</nav>
<section id="about">
<h2>About Me</h2>
<div class="about-container">
<div class="about-text">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus lacinia odio vitae vestibulum vestibulum. Cras venenatis euismod malesuada.</p>
</div>
<div class="about-image">
<img src="path/to/your/headshot.jpg" alt="Headshot of A.J. Hoyt">
</div>
</div>
</section>
<footer>
<p>© 2023 A.J. Hoyt</p>
</footer>
</body>
</html>