-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 2.33 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 2.33 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
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Sanaia's Personal Website</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">Personal Website</a></h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Sanaia's Blog</a></li>
<li><a href="portfolio.html">Sanaia's Portfolio</a></li>
<li><a href="resume.html">Sanaia's Resume</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">About Sanaia</h1>
<div class="about">
<div class="about-image">
<img src="images/sanaia.jpg" alt="Sanaia sitting and posing outside">
</div>
<div class="about-text">
<p>Hi, my name is <strong>Sanaia Pierre</strong>! I am from Chicago, IL, and a 4th-year <em>Software Engineering</em> major. I also have a minor in <em>Architecture</em>.
At Cal Poly, I have been a member of the <strong>Black Student Union</strong> and <strong>National Society of Black Engineers</strong>. My 2nd year was my first year as an E-Board member for the BSU. I
was the Graphic Arts Designer; Then last year, I was the Communications & Media Director and this year, I'm the Programming Director. I have also been a judge at the VEX
Robotics Competition that's held on campus since my first year with the <strong>Society of Women Engineers</strong>. I was drawn to that because I did robotics with FIRST in high school.
</p>
<p>
Outside of school, I enjoy hanging out with my friends. My friends at Cal Poly and I enjoy going to beach, walking around downtown, going out to eat, watching movies
together, and going out. When I visit my friends from high school, most often my friends in Baltimore, I explore their campus, we go out to eat, and take the train to DC.
I am hoping to visit them next year, when I can buy a plane ticket.
</p>
</div>
</div>
</main>
<footer class="footer">© 2023 Sanaia's Personal Website | All Rights Reserved</footer>
</body>
</html>