-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.71 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
35
36
<!DOCTYPE html>
<html>
<head>
<title> Elaina's Website </title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"> <a href="index.html"> Elaina Lyons </a> </h1>
<ul class="nav-list">
<li> <a href="index.html"> Home </a></li>
<li> <a href="blog.html"> Blog </a></li>
<li> <a href="contact.html"> Contact</a></li>
<li> <a href="portfolio.html"> Portfolio</a></li>
<li> <a href="resume.html"> Resume </a></li>
</ul>
</nav>
<main>
<h1 class="page-title"> Home </h1>
<div class="about">
<div class="about-image">
<img src="DSC_3069.jpeg" width="400" alt="Portrait image of Elaina Lyons">
</div>
<div class="about-text">
<p> Hello! My name is <strong> Elaina Lyons </strong> and I am a first-year <em> computer science </em> student at Cal Poly.
I love to be outside, whether that be running, mountain biking, paddle boarding, hiking, or skiing near my home in <em> Denver, Colorado.</em>
Other hobbies of mine include playing the <strong> piano </strong> (which I've been doing for 13 years), <strong>reading</strong>
(currently the Mistborn series by Brandon Sanderson) and hanging out with <strong> friends!</strong></p>
<p> I love to <em> code </em>and would love to work with <em> Hack4Impact </em>on their exciting projects!</p>
</div>
</div>
</main>
<footer class="footer"> © 2023 Elaina's Website | All Rights Reserved </footer>
</body>
</html>