-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.5 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Play incredible Star Wars Quiz! Can you beat the others? CLICK TO PLAY!">
<title>Star Wars Quiz</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/3710696c33.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/index.css" />
<link rel="stylesheet" href="styles/menu.css" />
</head>
<body>
<div id="#app" class='main-bg-image'>
<button class="burger">
<i class="fas fa-bars"></i>
<i class="fas fa-times hide"></i>
</button>
<div id="main-grid-container">
<div class="sw-logo"></div>
<nav class="quiz-main-menu">
<div class="selectMode">Select a quiz <br> mode:</div>
<button class='btn btn-characters'>CHARACTERS</button>
<button class='btn btn-vehicles'>VEHICLES</button>
<button class='btn btn-starships'>STARSHIPS</button>
</nav>
</div>
</div>
<script src="./src/utils/menuBurger.js"></script>
<script type="module" src="./src/main.js"></script>
<!-- <script type="module" src="./src/quizPage.js"></script> -->
</body>
</html>