-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (24 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<title>Dice Empire</title>
<link rel="stylesheet" type="text/css" href="style2.css">
</head>
<body>
<div class="popup">
<h2>Welcome to Dice Empire</h2>
<h3>These are the rules:</h3>
<p>
- The game has 2 players, playing in rounds<br>
- In each turn, a player rolls a dice as many times as he whishes. Each result get added to his ROUND score<br>
- BUT, if the player rolls a 1 and double 6, all his ROUND score gets lost. After that, it's the next player's turn<br>
- The player can choose to 'Hold', so his ROUND score gets added to his GLOBAL score. After that, it's the next player's turn<br>
- The first player to reach the inputed final score or the default 100 points on GLOBAL score (if no final score is given) wins the game.<br><br>
Now that's out of the way, click Continue
</p>
<a href="home.html">Continue</a>
</div>
<script src="script.js"></script>
</body>
</html>