-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (106 loc) · 3.14 KB
/
index.html
File metadata and controls
125 lines (106 loc) · 3.14 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sonja Ek</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="resources/favicon.png">
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Poppins:200i,300,400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- START NAVIGATION BAR -->
<nav id="navbar" class="nav">
<select id="lang-switch">
<option value="en">English</option>
<option value="fi">Suomi</option>
</select>
<ul class="nav-list">
<li>
<a href="#welcome-section">
<span language="en">About</span>
<span language="fi">Esittely</span>
</a>
</li>
<li>
<a href="#posts">
<span language="en">Posts</span>
<span language="fi">Kirjoitukset</span>
</a>
</li>
<li>
<a href="#contact">
<span language="en">Contact</span>
<span language="fi">Yhteystiedot</span>
</a>
</li>
</ul>
</nav>
<!-- END NAVIGATION BAR -->
<!-- START WELCOME SECTION -->
<section id="welcome-section" class="welcome-section">
<img src="resources/portrait.jpeg" alt="A woman with long brown hair and a black dress smiling" height="450">
<div class="introduction">
<h1 id="name">Sonja Ek</h1>
<p language="en">Nordic Philologist<br />& IT Professional</p>
<p language="fi">Pohjoismaisen kielitieteen<br /> ja ohjelmistoteknologian asiantuntija</p>
</div>
</section>
<!-- END WELCOME SECTION -->
<!-- START POSTS SECTION -->
<section id="posts" class="posts-section">
<h2 class="posts-section-header">Posts</h2>
<p id="placeholder-posts-text">My writings will be available here in the future!</p><br><br>
<!-- END POSTS SECTION -->
<!-- START CONTACT SECTION -->
<section id="contact" class="contact-section">
<div class="contact-section-header">
<h2>Contact me through...</h2>
</div>
<div class="contact-links">
<a
id="github-link"
href="https://github.com/sonjaek"
target="_blank"
class="btn contact-details"
><i class="fab fa-github"></i> GitHub</a
>
<a
id="linkedin-link"
href="https://linkedin.com/in/sonjaek/"
target="_blank"
class="btn contact-details"
><i class="fab fa-linkedin"></i> LinkedIn</a
>
<a href="mailto:garna_kloster.0l@icloud.com" class="btn contact-details"
><i class="fas fa-at"></i> Email</a
>
</div>
</section>
<!-- END CONTACT SECTION -->
<!-- START FOOTER SECTION -->
<footer>
<p>
👩‍💻 Page created by Sonja Ek
<br />
📷 Portrait photo by Samuli Pulkkinen
</p>
</footer>
<!-- END FOOTER SECTION -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="./languageSwitcher.js"></script>
</body>
</html>