-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (90 loc) · 4.35 KB
/
index.html
File metadata and controls
95 lines (90 loc) · 4.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120059035-1"></script>
<script>
if (document.location.hostname.indexOf("localhost") == -1) {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-120059035-1");
}
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta content="#1CD0A5" name="theme-color" />
<!-- Primary Meta Tags -->
<title>Angelina von Gegerfelt</title>
<meta name="title" content="Angelina von Gegerfelt" />
<meta name="description" content="Just another webdev living in Stockholm." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gegerfelt.io/" />
<meta property="og:title" content="Angelina von Gegerfelt" />
<meta property="og:description" content="Just another webdev living in Stockholm." />
<meta property="og:image" content="https://gegerfelt.io/images/card.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://gegerfelt.io/" />
<meta property="twitter:title" content="Angelina von Gegerfelt" />
<meta property="twitter:description" content="Just another webdev living in Stockholm." />
<meta property="twitter:image" content="https://gegerfelt.io/images/card.png" />
<link href="stylesheets/style.css" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-touch-icon.png" />
<link rel="shortcut icon" href="/images/icons/favicon.ico" type="image/x-icon" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/images/icons/favicon-16x16.png" />
<link rel="mask-icon" href="/images/icons/safari-pinned-tab.svg" color="#5bbad5" />
<link href="manifest.json" rel="manifest" />
</head>
<body>
<div id="main_doggo">
<div class="long_doggo"></div>
<div id="speech_bubble">
<img class="speech" src="/images/speech.svg" />
<p>Hi!</p>
</div>
<div id="personal_letter">
<p>
My name is <span class="pink">Angelina</span> and I am a <span class="teal">webdev</span> working in
Stockholm, Sweden.
</p>
<p>
I am currently open to work as a freelancer, with previous work experience as a frontend dev for <span class="blue">The Swedish Police Authority,</span> as a consultant and in a startup.
</p>
<p>
I have a Bachelor in <span class="teal">Computer Science</span>, with a Master of Science in
<span class="teal">Human-Computer Interaction</span>, both from
<span class="blue">The Royal Institute of Technology</span>.
</p>
<p>
I spend my spare time with my <span class="pink">husband and two daughters</span>, working on my coding
projects, playing <span class="red">DnD</span> with my friends, and
<span class="orange">sewing</span> clothes.
</p>
<p>If you wanna <span class="red">chat</span>, feel free to reach out!</p>
</div>
</div>
<div id="contact_doggo">
<img id="short_doggo" src="/images/short_doggo.svg" />
<img class="speech" src="/images/speech.svg" />
<div id="social_buttons">
<a class="social" onclick="logSocial('Linkedin')" id="linkedin" href="https://se.linkedin.com/in/angelina-vg"
>Li</a
>
<a class="social" onclick="logSocial('Email')" id="email" href="mailto:angelina@triqla.com">@</a>
<a class="social" onclick="logSocial('Github')" id="github" href="https://github.com/Glassig">GH</a>
<a class="social" onclick="logSocial('Pdf')" id="pdf" href="/Angelina_CV_Eng.pdf">Pdf</a>
</div>
<p id="email_printed">angelina@triqla.com</p>
</div>
<div id="hanging_doggo">
<img src="/images/short_doggo.svg" alt="A short doggo hanging out" />
</div>
<script src="app.js"></script>
</body>
</html>