-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRules.html
25 lines (24 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pig Game</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body style="background-color: aquamarine;">
<div class="container">
<h1 style="text-align: center;">Rules:</h1>
<h4>1.The game has two players, playing in rounds.</h4>
<h4>2.In each turn, ap player rolls a dice as many times as he wishes. Each result get added to his round score.</h4>
<h4>3.But, if the rolls a 1, all his round score gets lost.After that ,it's the next player's turn.</h4>
<h4>4.the player can choose 'hold' , which means that his round score gets added to his global score .After that, it;s the nexxt player's turn.</h4>
<h4>5.the first player to reach 100 points on global score wins the game.</h4>
<div class="col-md-12 text-center">
<a href="pigGame.html"><button class ="btn btn-primary">Start Game</button></a>
</div>
</div>
</body>
</html>