-
Notifications
You must be signed in to change notification settings - Fork 4
/
menu.html
61 lines (60 loc) · 2.09 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quizaa</title>
<link rel="stylesheet" href="./CSS/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./CSS/menu.css" />
<script src="./Scripts/main.js"></script>
<script src="./Scripts/menu.js"></script>
<script src="./Scripts/typeWriter.js"></script>
</head>
<body>
<header class="header"><a href="./menu.html">QUIZAA</a></header>
<main class="main">
<div class="menu-container">
<div class="menuLeft">
<div class="menuInfo">
<h1 class="title" id="greeting"></h1>
<p>
Are you ready to start playing? Choose what you want from the menu
below.
</p>
</div>
<button id="startGame" class="primary-button-lg">Start Quizaa</button>
<a href="./highscore.html">
<button class="secondary-button-lg">Highscore</button>
</a>
<a href="./rules.html">
<button class="secondary-button-lg">Rules</button>
</a>
<a href="./stats.html">
<button class="secondary-button-lg">Stats</button>
</a>
<a class="link-button" href="./index.html" id="logOutLink"
>Or logout</a
>
</div>
<div class="menuRight">
<div class="menuChatBubble">
<span id="readySentence">
<!-- SENTENCE TO TYPEWRITE -->
</span>
<span class="cursor" id="cursor" class="blink">
<!-- CURSOR BLINK WITH JAVASCRIPT FUNCTION -->
_</span
>
</div>
<div class="menuImg"><img src="./Assets/game-leader.png" /></div>
</div>
</div>
</main>
<footer class="footer"><a href="https://icons8.com/">icons8.com</a></footer>
</body>
</html>