-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title>Yasemin's Webpage!</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class= "navbar">
<h1 class= "logo">
<a href= "index.html">YaseminAkkaya</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">Welcome to My Website!</h1>
<div class= "about">
<div class= "about-image">
<img src= "Profile.jpg" alt= "picture of me">
</div>
<div class= "about-text">
<p>I'm a second year <strong>Computer Science</strong> major at Cal Poly SLO who is
pursuing a minor in <em>economics</em>! I have a lot of experience with front-end development,
but I am currently interested in <strong>A.I.</strong> I am passionate about using my CS skills to inspire young,
particularly female, coders and to give back to the community!
</p>
</div>
</div>
</main>
<footer class= "footer">© 2023 Yasemin's Webpage | All Rights Reserved</footer>
</body>
</html>