-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.48 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
37
<!DOCTYPE html>
<html>
<head>
<title>Ethan Yang</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class = "navbar">
<h1 class = "logo"><a href="index.html">Ethan Yang</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="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<div class="about">
<div class="about-image">
<img src="moon.JPG" alt = "A video of an image of the sky and clouds being too big">
</div>
<h1>Ethan Yang</h1>
<div class="about-text">
<p>Hello! My name is Ethan and I'm a first year Computer Science major at Cal Poly SLO.
In my free time I enjoy hiking, playing beach volleyball, listening to music, spending time with friends, taking pictures, editing videos,
and working on coding projects.</p>
<p>I mostly code in Python with proficiency in HTML and CSS.</p>
</div>
</div>
</main>
<footer class = "footer">
© 2024 Ethan Yang Personal Website | All Rights Reserved
</footer>
</body>
</html>