-
Notifications
You must be signed in to change notification settings - Fork 0
/
instructions.html
38 lines (34 loc) · 1.41 KB
/
instructions.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
<!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>Instructions</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="shortcut icon" href="images/money.png" type=" image/x-icon">
<script src="https://kit.fontawesome.com/9252b36e3c.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="instructions-body">
<header>
<a href="index.html"><i class="fas fa-chevron-left"></i></a>
</header>
<h1>Garper - Instructions</h1>
<p>This is a game that people play in stalls. You and the computer have been given $10,000 by default. Next you
have
to
enter amount of money you are going to risk. Your amount should be lesser than or equal to the money and
that is
left with you. Then you role the dice, a random number is going to appear. If it is equal to or less than 5
then
the computer will get the money you put on bet,if the value is greater than or equal to 7 then the computer
will
give
you the double
of what
you put on bet and if the value is 6 then the computer will give you the triple of what you put on bet.
</p>
</div>
</body>
</html>