-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
32 lines (30 loc) · 1.25 KB
/
portfolio.html
File metadata and controls
32 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<header>
<h1>Shereen's Portfolio</h1>
<h3 class="quote">"What are we breathing for if we ain't living?"</h3>
</header>
<main>
<div class="pic">
<img src="me.jpg" width="250px" height="350px">
</div>
<div class="main-nav">
<ul class="nav">
<li><a href="./coding.html">Coding</a></li>
<li><a href="./approunity.html">ApproUnity</a></li>
<li><a href="./Photography.html">Photography</a></li>
<li><a href="./poetry.html">Poetry</a></li>
<li><a href="./writing.html">Writing</a></li>
</ul>
</div>
<p class="aboutme">My name is Shirin Abdelqader and I am a Computer Science graduate from GUST. I am passionate about coding and consider myself proficient in multiple coding languages, but I also consider myself to be a creative creator as well. The pages in the website lead to some examples of different works I've done and enjoy. </p>
<h3 class="aboutme">email: shereengaa@gmail.com</h3>
<h3 class="aboutme">github username: <a href="https://github.com/shereengh">shereengh</a></h3>
</main>
</body>
</html>