-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.24 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Personal Website</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class= "logo">
<a href="index.html">Aaron's Website</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>
<h1 class="page-title">Hello Viewer!</h1>
<div class="about">
<div class="about-image"><img src="pictures/me.PNG" alt="sexy me" class="imgMain"></div>
<div class="about-text">
<p>My name is <strong>Aaron</strong> you can called me <em>A-aron.</em> I am a fourth year Computer Engineering major hoping to get into the field of embedded systems. Some of my hobbies include <u>sports,video games and gym.</u></p>
</div>
</div>
</main>
<footer class="footer"><strong>© 2025 Personal Website | All Rights Reserved | Made with LOVE and AFFECTION</strong></footer>
</body>
</html>