-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.69 KB
/
index.html
File metadata and controls
40 lines (35 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<title>Turkish Delight</title>
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Turkish Delight</a>
</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">My Intro</h1>
<div classs="about">
<div class="about-image">
<img src="IMG-5028.jpg" alt="That's me">
</div>
<div class="about-text">
<p>Hello World! My name is <strong>Sanaia Pierre</strong>. I am a second-year student at the California Polytechnic State University in San Luis Obispo, California. I am
pursuing a major in Software Engineering and a minor in Architcture. I'm interested in design regarding building and computers.</p>
<p>Outside of school, I enjoy watching movies and TV shows. I am a really big fan of the superhero genre and Star Wars. I enjoy <em>analyzing</em> movies and finding
hidden easter eggs throughout. I love seeing callbacks to past movies, I'm <strong>big</strong> on nostalgia.</p>
</div>
</div>
</main>
<footer class="footer">© 2023 Turkish Delight | All Rights Reserved</footer>
</body>
</html>