-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 1017 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="index.css" />
<title>Mine Sweeper</title>
</head>
<body>
<div id="gameContainer" class="gameContainer">
<div id="title " class="title">
<span class="center">Mine Sweeper</span>
</div>
<div id="timer" class="timer center">Time:- 0</div>
<div id="score" class="score center">Score:- 0</div>
<div id="game" class="game center"></div>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content" id="modal-content"></div>
</div>
</div>
<script src="modal.js"></script>
<script src="index.js"></script>
</body>
</html>