-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·102 lines (79 loc) · 2.25 KB
/
index.html
File metadata and controls
executable file
·102 lines (79 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2R1F272Q77"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2R1F272Q77');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://kit.fontawesome.com/57a8a8c892.js" crossorigin="anonymous"></script>
<title>BrickMMO | Adam Thomas</title>
<style>
body {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Lora', serif;
color: #333;
background-color: #fff;
}
#step-1 {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
#step-1-box {
position: relative;
text-align: center;
width: 100%;
}
#codeadam {
position: fixed;
bottom: 0;
right: 0;
font-size: 24px;
padding: 15px;
z-index: 10000;
font-family: Arial, Helvetica, sans-serif;
}
a:link,
a:hover,
a:visited,
a:active {
text-decoration: none;
}
textarea:focus,
input:focus,
*:focus {
outline: none;
}
</style>
</head>
<body>
<div id="codeadam">
<a href="https://github.com/codeadamca/brickmmo"><i class="fab fa-github"></i></a>
<a href="https://codeadam.ca"><img src="https://codeadam.ca/images/code-block-grey.png" width="30"></a>
</div>
<div id="step-1">
<div id="step-1-box">
<img src="/images/brickmmo-logo-horizontal.jpg" width="400">
<div style="font-size: 300%;">
<a href="https://twitter.com/brickmmo"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/brickmmo/"><i class="fab fa-instagram"></i></a>
<a href="https://www.tiktok.com/@brickmmo"><i class="fab fa-tiktok"></i></a>
</div>
</div>
</div>
</body>
</html>