-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·65 lines (61 loc) · 1.39 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicons/favicon_comp/favicon.ico">
<title>Andrew Fuller</title>
<!-- Inlining CSS for the speeds -->
<style>
body {
font-size: 1em;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
color: #666;
margin: 0;
padding: 0;
}
h1 {
margin: 0;
}
li {
margin-bottom: 5px;
}
.banner {
width: 100%;
height: 25vw;
background-color: #4A90E2;
}
.banner--text {
font-size: 8vw;
padding-top: 8vw;
}
.content {
max-width: 600px;
margin: 30px auto;
padding: 0 15px;
}
.u-text-white {
color: #fff;
}
.u-text-center {
text-align: center;
}
</style>
</head>
<body>
<div class="banner">
<h1 class="u-text-white u-text-center banner--text">hello</h1>
</div>
<div class="content">
<p>
Please reach out on the following platforms:
<ul>
<li><a href="https://x.com/andrewfullerxyz">X</a></li>
<li><a href="https://linkedin.com/in/ajfuller/">LinkedIn</a></li>
<li><a href="https://github.com/fuller">Github</a></li>
</ul>
</p>
</div>
</body>
</html>