-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
56 lines (49 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" />
<title>Document</title>
</head>
<style>
body {
background-color: beige;
}
.box {
text-align: center;
}
.container {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
}
#button {
display: flex;
justify-content: center;
align-items: center;
height: 80px;
width: 180px;
background-color: blue;
margin: auto;
border-radius: 10px;
}
#button a {
color: white;
}
</style>
<body onload="discord()">
<div class="container">
<div class="box">
<h1>Under Construction</h1>
<img src="codemonkey.png" alt="cartoon monkey writing code" class="codemonkey" />
<div id="button"></div>
</div>
</div>
</body>
<script src="./script.js"></script>
</html>