-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
56 lines (52 loc) · 1.45 KB
/
about.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<title>Emilios' Web Page</title>
<link rel="icon" href="images/favicon-32x32.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>About</h1>
<nav class="in-page-nav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
</nav>
</header>
<main class="about-main">
<section class="me-image">
<h2>My face</h2>
<figure class="about-photo">
<img
src="images/me-about-2.jpg"
alt="A picture of Emilios smiling with the sun hitting one half of his face"
/>
<figcaption>
Yup that's my face, there was some sun (believe it or not, in
Ireland), moving on.
</figcaption>
</figure>
</section>
<section class="technologies-and-languages">
<h2>Technologies I work with currently</h2>
<ul>
<li>NextJs</li>
<li>React</li>
<li>GraphQL</li>
<li>SQL in general</li>
</ul>
</section>
<section class="technologies-and-languages">
<h2>Languages I speak/write</h2>
<ul>
<li>English</li>
<li>French</li>
<li>Greek</li>
<li>Arabic</li>
</ul>
</section>
</main>
</body>
</html>