-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>Sean M. Nguyen - Personal Website</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">Sean M. Nguyen</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>
<div class="about">
<div class=""about-image"><img src="TempPFP.jpg" alt="Profile Picture" width="200" height="150"></div>
<div class="about-text">
<h1 class="page-title">About</h1>
<p>
Hello, my name is <strong>Sean Nguyen (he/him/his)!</strong> I am currently a
<em>second year </em>student at Cal Poly San Luis Obispo majoring in
<strong>Computer Science </strong>with a concentration in AI and
Machine Learning.
</p>
<p>
This quarter, I am studying Software Engineering abroad in the city
where all roads lead, <em>Rome!</em>
</p>
<p>
Aside from academics, I love music, ranging from classical
piano to contempoary chord sheets, swimming—or anything
aquatic, really—and expanding my flavor palette. Oh, and I
can make <em>pho</em> :)
</p>
</div>
</div>
</main>
<footer class="footer">© 2023 Sean M. Nguyen | All Rights Reserved</footer>
</body>
</html>