-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (68 loc) · 3.01 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
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Onet Prime Game</title>
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<h1>Onet Prime</h1>
<nav>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Prime_number" target="_blank">Prime definition</a></li>
<li><a href="https://byjus.com/maths/prime-numbers/" target="_blank">Some examples</a></li>
</ul>
</nav>
</header>
<main>
<div id="content">
<div id="board">
<!-- <div class="flex-container-column">
<div class="flex-container-row">
<div class="button"></div>
</div>
</div> -->
<div id="info">
<div>Best Score : <span id="bestScore">0</span></div>
<div>Score : <span id="score">0</span></div>
</div>
</div>
<article>
<h4>What is Onet Prime?</h4>
<p>Onet Prime is a game to find sequence number that the sum is prime number.</p>
<h4>How to play?</h4>
<p>
Find the sequence by clicking two boxes. If the sum of the sequence is prime then you will get a score.
If it's not, your score will be decreased.
If the score doesn't change it means you have already chosen the boxes.
</p>
</article>
</div>
<aside>
<h5>Created by: </h5>
<img src="assets/images/Foto_Muhamad Syifa Nurhidayat.jpg" alt="picture" width="150px">
<table>
<tr>
<th colspan="2">Muhamad Syifa Nurhidayat</th>
<td></td>
</tr>
<tr>
<th><i class="fa fa-linkedin-square" style="font-size:24px"></i></th>
<td><a href="https://linkedin.com/in/msnhdyt" target="_blank">Muhamad Syifa Nurhidayat</a></td>
</tr>
<tr>
<th><i class="fa fa-github" style="font-size:24px"></i></th>
<td><a href="https://github.com/msnhdyt/" target="_blank">msnhdyt</a></td>
</tr>
</table>
</aside>
</main>
<footer>
<p>😊😊</p>
</footer>
<script src="assets/storage.js"></script>
<script src="assets/main.js"></script>
</body>
</html>