-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8ZLD1K536P"></script>
<title>Kyle Willis</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: sans-serif;
background-color: #f5f5f5;
}
.container {
text-align: center;
}
.name {
font-size: 48px;
font-weight: bold;
color: #333;
}
.email {
font-size: 24px;
color: #444;
margin-top: 20px;
}
.x {
font-size: 24px;
color: #444;
margin-top: 20px;
}
.footer {
bottom: 0px;
position: absolute;
padding: 15px;
}
</style>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8ZLD1K536P');
</script>
</head>
<body>
<div class="container">
<div class="name">Kyle Willis</div>
<div class="email">[email protected]</div>
</div>
</body>
</html>