This repository has been archived by the owner on Nov 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrules.html
44 lines (37 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<title>Rules</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</head>
<body>
<h1>
<center>Rule and Information</center>
</h1>
<div style="width: 75%; font-size: 24px">
<ul>
<li>This is a modified version of the game of Uno.</li>
<li>
You must call uno before playing your second-to-last card. Penalty for not doing this is to draw 2 cards.
</li>
<li>
If you do not have a valid card to play you must draw until you get one you can play.
</li>
<li>
The draw-4 cards can be stacked. If a player plays a draw-4, the next player must play a
draw-4 or else draw the total number of cards from the deck. This same rule applies to the draw-2 card.
</li>
</ul>
</div>
<div class="form-group mt-5" style="text-align:center">
<button class="btn btn-primary center-block" type="button" onclick="window.open('index.html','_self')">
<h2>Return to Main Menu</h2>
</button>
</div>
</body>
</html>