-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.43 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>Ivan Alvarez's Website</title>
<link rel="stylesheet" href="full_styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Ivan Alvarez</a>
</h1>
<u1 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>
</u1>
</nav>
<main>
<h1 class="page-title">About Myself</h1>
<div class="about">
<div class="about-image">
<img src="./professional.jpeg" alt="A professional photo of myself">
</div>
<div class="about-text">
<p>I am Ivan Alvarez, a second year student at Cal Poly majoring in <strong> Computer Engineering</strong>.</p>
<p>I am a very physically active person and I love to <strong>weightlift and hike.</strong> </p>
<p>A fun fact about me is that I have built <strong>3 gaming computers!</strong></p>
</div>
</div>
</main>
<footer class="footer">© 2023 Ivan Alvarez's Website | All Rights Reserved</footer>
</body>
</html>