-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (56 loc) · 1.71 KB
/
index.html
File metadata and controls
57 lines (56 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-RTWGJQHG9K"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-RTWGJQHG9K");
</script>
<title>Hex Guessr</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="style.css" />
<script
src="https://kit.fontawesome.com/a678f4bb12.js"
crossorigin="anonymous"
></script>
</head>
<body>
<h1>Hex Guessr</h1>
<div class="content">
<div id="color-display"></div>
<div id="options">
<button class="color-option"></button>
<button class="color-option"></button>
<button class="color-option"></button>
</div>
</div>
<h4 id="result">Ihihihi You Got Me</h4>
<button id="reset-button" onClick="window.location.reload();">
Play Again
</button>
<div class="credits">
<a target="_blank" href="https://www.github.com/horuschild"
><i class="fa-brands fa-github"></i
></a>
<a target="_blank" href="https://www.instagram.com/horuschild"
><i class="fa-brands fa-instagram"></i
></a>
<a
target="_blank"
href="https://www.linkedin.com/in/zahra-indica-fathsyah"
><i class="fa-brands fa-linkedin"></i
></a>
<a target="_blank" href="https://horuschild.netlify.app/">©HORUSCHILD</a>
</div>
<script src="script.js"></script>
</body>
</html>