forked from KendallDoesCoding/quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (67 loc) · 2.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz Game - Home Page</title>
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous" />
<link rel="icon" type="image/x-icon" href="./images/Main.ico">
<!-- Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-55DLRTJ04T"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-55DLRTJ04T');
</script>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js',
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TR6RS2G');
</script>
<!-- End Google Tag Manager -->
</head>
<body>
<div id="issue-embed"></div>
<script src="https://cdn.issueembed.dev/v1/issue-embed.min.js"></script>
<script>
issueEmbed.init('#issue-embed', {
key: '66893659-ea5a-4066-be0a-7bcc5586a0bb',
});
</script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TR6RS2G" height="0" width="0"
style="display: none; visibility: hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<h1>Are you Ready?</h1>
<div id="home" class="flex-column flex-center">
<a href="./pages/game.html" class="btn">Play <i class="fas fa-play-circle"></i></a>
<a href="./pages/topics.html" id="topics-btn" class="btn">Topics
</a>
<a href="./pages/highscores.html" id="highscore-btn" class="btn">High Scores <i class="fas fa-crown"></i></a>
<a href="./pages/rules.html" id="rules-btn" class="btn">Rules & Info <i class="fas fa-info-circle"></i></a>
<a href="./pages/suggestion.html" id="suggestion-btn" class="btn">Question Suggestion <i
class="fas fa-edit"></i></a>
<a href="https://github.com/KendallDoesCoding/quiz/releases" target="_blank" id="releases-btn"
class="btn">Releases & Updates
</a>
</div>
</body>
</html>