-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.3 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
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Personal Website</title>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<nav class="navbar">
<h1 class="logo">Hack4Impact</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">Personal Website</h1>
<div class="about">
<div class="about-image">
<img src="headShot.jpeg" alt="A picture of me!">
</div>
<div class="about-text">
<p>Welcome to the world of <b>Josh Queja</b> 🌍</p>
<p>As a dedicated and passionate third year Computer Science student,
my primary focus lies in <b>software development</b>.
</p>
<p>Beyond academics, I have gained valuable leadership experience, successfully
guiding and inspiring students in various projects throughout the community.
</p>
</div>
</div>
</main>
<footer class="footer">
<p>© 2023 My Personal Website | All Rights Reserved | Made with love ♥ </p>
</footer>
</body>
</html>