-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (35 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>OpenClicker</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=IBM+Plex+Serif&display=swap">
<style>
body {
font-family: 'IBM Plex Serif', serif;
}
html, body {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#cookies-display{
vertical-align: top;
}
</style>
<script src="js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/4b1b6e3ba2.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="text-center">
<h1 id="cookies-display">You've brewed no coffee</h1>
<button id="cookie" class="btn btn-lg btn-success rounded-pill shadow">
<i class="fa-solid fa-mug-hot"></i>
</button>
</button>
</div>
<script src="index.js"></script>
</body>
</html>