-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (71 loc) · 2.31 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html>
<head>
<title>Leigh Taylor Hutchens</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" />
<link href="https://fonts.googleapis.com/css?family=Raleway:200,100,400" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<style>
html,body {
font-family: 'Raleway';
padding: 3em 2em;
font-size: 100%;
background: #111;
color: #888;
}
.content {
display: flex;
align-items: center;
min-height: 60vh;
}
.footer {
display: flex;
margin-top: auto;
font-size: 1.0em;
}
.footer i {
padding: 15px;
}
.center {
justify-content: center;
}
.left {
justify-content: flex-start;
}
h1,h2 {
font-weight: 200;
margin: 0.4em 0;
}
h1 {
color: #bbb;
font-size: 5em;
}
h2 {
color: #888;
font-size: 3em;
}
a {
color: #666;
text-decoration: none;
}
a:hover {
color: #eee;
}
</style>
</head>
<body>
<div class="content center">
<div class="left">
<h1 class="animate__animated animate__fadeInDown">Leigh Taylor Hutchens</h1>
<h2 class="animate__animated animate__fadeInDown animate__delay-2s">Content specialist living in <a href="https://www.google.com/maps/place/Stockholm" target="_blank">Stockholm, Sweden <i class="fas fa-map-marker-alt"></i></a></h2>
</div>
</div>
<div class="footer center">
<a href="https://www.linkedin.com/in/leightaylorhutchens" target="_blank" alt="LinkedIn"><i class="fab fa-linkedin fa-2x"></i></a>
<a href="https://www.instagram.com/leigh.hutchens" target="_blank" alt="Instagram"><i class="fab fa-instagram fa-2x"></i></a>
<a href="mailto:[email protected]" target="_blank" alt="E-Mail"><i class="fas fa-envelope fa-2x"></i></a>
<a href="tel:+46762871136" target="_blank" alt="Phone"><i class="fas fa-phone-volume fa-2x"></i></a>
<a href="sms:+46762871136" target="_blank" alt="Text Message"><i class="fas fa-sms fa-2x"></i></a>
</div>
</body>
</html>