-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>Personal Website</title>
<link rel="stylesheet" href="styles.test.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Sohini's Personal 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">About Me!</h1>
<div class="about">
<div class="about-image"><img src="golf.jpeg" alt="A picture of my favorite golf course."></div>
<div class="about-text">
<p>Hi! My name is <strong>Sohini</strong> and I am a second year CS major at Cal Poly. Apart from CS, my interests and hobbies include <em>golf, traveling, reading, gymnastics</em> and <em>spending time with my friends and family.</em> <br>I am excited for fall quarter and this school year.</p>
</div>
</div>
</main>
<footer class="footer">© 2023 Sohini's Personal Website | All Rights Reserved</footer>
</body>
</html>