-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
55 lines (55 loc) · 1.94 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
<!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" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/reset.min.css"
/>
<link rel="stylesheet" href="style.css" />
<title>PigTheDiceGame</title>
</head>
<body>
<header class="main">Welcome to PigTheDiceGame!</header>
<div class="container">
<div class="inner">
<ul>
<li>
<img
src="https://upload.wikimedia.org/wikipedia/commons/1/1e/Dice_%28504524747%29.jpg"
alt="dice"
/>
</li>
<li>
1.
<a
href="https://en.wikipedia.org/wiki/Pig_(dice_game)"
target="_blank"
>Pig</a
>
is a simple dice game first described in print in John Scarne in
1945.[1] Players take turns to roll a single die as many times as
they wish, adding all roll results to a running total, but losing
their gained score for the turn if they roll a 1.
</li>
<li>
2. As with many games of folk origin, Pig is played with many rule
variations, including the use of two dice instead of one. Commercial
variants of two-dice Pig include Pass the Pigs, Pig Dice,[2] and
Skunk.[3] Pig is commonly used by mathematics teachers to teach
probability concepts.
</li>
<li>
3. Pig is one of a family of dice games described by Reiner Knizia
as "jeopardy dice games", where the dominant type of decision is
whether or not to jeopardize previous gains by rolling for potential
greater gains.[4]
</li>
</ul>
</div>
</div>
<script src="main.js"></script>
</body>
</html>