-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (100 loc) · 3.63 KB
/
index.html
File metadata and controls
106 lines (100 loc) · 3.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nexus Map Game</title>
<script src="./js/scripts-map.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./css/home.css" />
</head>
<body>
<video
autoplay
muted
loop
id="myVideo"
style="height: 100vh; position: fixed; right: 0"
>
<source src="./assets/video.mp4" type="video/mp4" />
</video>
<div class="content">
<h1 class="text-white">World Map Game</h1>
<button id="myBtn" onclick="setLocalStorage(), moveToNextPage()">
Start the Game >
</button>
</div>
<div class="row" id="inputfield">
<div class="col-3 styled-input" id="inputName">
<input id="firstName" placeholder="Enter Your Name" />
</div>
<div class="styled-select">
<select id="number">
<option value="" disabled selected>Enter Number Of Questions</option>
<option value="1">1 Question</option>
<option value="2">2 Questions</option>
<option value="3">3 Questions</option>
<option value="4">4 Questions</option>
<option value="5">5 Questions</option>
<option value="6">6 Questions</option>
<option value="7">7 Questions</option>
<option value="8">8 Questions</option>
<option value="9">9 Questions</option>
<option value="10">10 Questions</option>
</select>
</div>
</div>
<a data-toggle="modal" data-target="#myModal" id="instructions" href="">
Game Instructions
</a>
<!-- modal dialog for Instructions -->
<div class="modal" id="myModal">
<div class="modal-dialog" data-bs-theme="dark" >
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Game Instructions</h4>
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body d-flex flex-column">
<div class="green-text">
<h6>Welcome to the World Map Game!</h6>
</div>
<div>
<ul>
<li>Enter the Name and Number of Questions</li>
<li>For Answering, click on any of the continent</li>
<li>At the end of the quiz, you will get the result</li>
</ul>
</div>
<div class="d-flex justify-content-center">
<img
src="./assets/team.jfif"
class="modal-img"
/>
</div>
<p>Developed with ☕ by Team Nexus!</p>
</div>
</div>
</div>
</div>
</body>
</html>