-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·56 lines (56 loc) · 1.57 KB
/
about.html
File metadata and controls
executable file
·56 lines (56 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>marouli</title>
<link rel="stylesheet" type="text/css" href="css/general.css" />
<link rel="stylesheet" type="text/css" href="css/about.css" />
<link
href="https://fonts.googleapis.com/css?family=Amatic+SC|Roboto|Roboto+Condensed"
rel="stylesheet"
/>
</head>
<body>
<div id="left-container">
<header class="pageHeader">
<a href="index.html">
<img
class="round_figure"
src="images/red_round.png"
alt="Marouli Photo"
/>
</a>
<h1 class="nickName">MAROULI</h1>
</header>
<nav>
<ul id="menu">
<li class="about">
<a href="about.html">About me</a>
</li>
<li class="portfolio">
<a href="portfolio.html">Portfolio</a>
</li>
<li class="contact">
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
<div id="right-container">
<article>
<header class="aboutHeader">
<h3>About me</h3>
</header>
<section class="myStory">
<p>Hi! My name is Maria Sidiropoulou.</p>
<p>I am a graphic designer currently studying web development.</p>
<p>This is my very first site!</p>
<p>It's a work in progress but I hope you like it!</p>
<p>
I would be happy to hear any suggestions or comments you might have!
</p>
</section>
</article>
</div>
</body>
</html>