forked from hack4impact-calpoly/bootcamp-project-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.64 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
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nickaan's Personal Website</title>
<link rel="stylesheet" href="styles.css">
<meta charSet="UTF-8"/>
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Nickaan Jahadi</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">What's up!</h1>
<div class="about">
<div class="about-image">
<img
src="./images/nickaanjahadi.jpg"
alt="An image of me, Nickaan Jahadi (This is on my LinkedIn)"
/>
</div>
<div class="about-text">
<p>
Hello! My name is Nickaan Jahadi and I am a <strong>third year computer engineering major</strong>. I grew up in
San Diego and love nutrition, working out, and playing/watching sports, especially basketball, boxing, and MMA.
</p>
<p>I got into programming my senior year of high school and am still deciding whether I wanna pursue software, hardware,
or both. I am very new to web development, so this starter pack was definitely a good start.
</p>
</div>
</div>
</main>
<footer class="footer">
© 2024 Nickaan Jahadi's Personal Website | All Rights Reserved
</footer>
</body>
</html>