-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.html
67 lines (63 loc) · 2.21 KB
/
rules.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>RULES</title>
<link rel="icon" href="images/icon.png">
<link rel="stylesheet" href="style.css">
<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=Gugi&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Codystar&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Staatliches&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Teko:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Glegoo&display=swap" rel="stylesheet">
<script defer src="script.js"></script>
</head>
<header>RULES</header>
<body>
<h4>
<div id="watermark"><img src="images/watermark.png" /></div>
The goal of this multi player dice game is to get the most points. There are 5 rounds of the game:
<br>
<br>
1- S
<br>
2- N
<br>
3- A
<br>
4- K
<br>
5- E
<br>
<br>
For each round, the current player rolls the dice.
<br>
<br>
If current player rolls any combination that doesn't include a
'snake eye' (a single pip on the die i.e. a die face with a value of one) they count their current points, and
have the option to keep rolling ( ROLL ), or end their turn ( HOLD ) and pass the dice to the next player.
<br>
<br>
If their roll includes a single snake eye, the player will collect ZERO points for that round and must pass the
dice to the next player.
<br>
<br>
If
their roll includes double snake eyes, the player will lose ALL accumulated points and must pass the dice to the
next
player.
<br>
<br>
The player with the most points on the
5th
round wins.
<br>
<br>
</h4>
</body>
<a href="index.html">
<button>Back</button></a>
</html>