-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (56 loc) · 2.44 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<title>Matemaclick</title>
</head>
<body class="bg-dark" style="overflow: hidden;">
<div class="container">
<!-- <div class="logo-instruction">
<img src="img/mouse-arrow.png" alt="mouse-arrow" style="width: 7%;" id="mouse">
</div> -->
<button type="button" class="btn-radius instruction" onclick="show();">?</button>
<span class="text-light bg-dark title">MATEMACLICK</span>
<button type="button" class="arrow-button" onclick="location.href='game.html';">
<span>Start</span>
</button>
</div>
<!-- The Modal -->
<div id="insModal" class="modal" style="padding: 1%;">
<!-- Modal content -->
<div class="modal-content" style="min-width: 420px;">
<div class="modal-body">
<img src="img/instruction.gif" alt="game-instruction" class="w-100">
<p class="text-center font-weight-bolder text-primary" style="margin: 2% auto;">
Pilih operator aritmatika yang sesuai untuk menghasilkan angka yang diminta pada soal
</p>
<table style="margin-bottom: 5%;">
<tr>
<td valign="top">
<img src="img/win-state.gif" alt="win-state-gif" class="w-100">
<p class="text-center ins-win-state">
Jawaban benar akan menaikkan level dan tingkat kesulitan
</p>
</td>
<td valign="top">
<img src="img/lose-state.gif" alt="lose-state-gif" class="w-100">
<p class="text-center ins-lose-state">
Jawaban salah akan mengembalikan ke halaman awal permainan
</p>
</td>
</tr>
</table>
<!-- note -->
<p class="text-secondary font-italic font-weight-light text-center">
Tap Anywhere to Continue
</p>
</div>
</div>
</div>
<!-- javascript modal instruction -->
<script src="instruction.js"></script>
</body>
</html>