-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/html5reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel = "icon" type = "image/x-icon" href = "images/favicon.ico">
<title>4 Uno Rules You're Playing Wrong</title>
</head>
<body>
<main>
<h1>4 Uno Rules You're Playing Wrong</h1>
<img src="images/uno-cards.jpg" width = "150" alt="uno cards" />
<div class="introduction">
<p>The popular American card game Uno has simple rules, right?<br> WRONG!<br>
Here are some rules you're probably playing incorrectly.</p>
</div>
<div class="red">
<h2>Red -- If you don't have a card to play, you only have to pick up one card</h2>
<p>You don't have to keep drawing cards until you get one that matches the discard pile, and you can even play it right away!</p>
</div>
<div class="blue">
<h2>Blue -- You can't stack or chain cards</h2>
<p>Sorry, you can't make your little brother pick up 6 cards by playing a draw 2 after a draw 4. If a draw card is played, the next player picks up the cards and misses their turn.</p>
</div>
<div class="yellow">
<h2>Yellow -- You can win with an action card</h2>
<p>Wild, Skip, even Reverse - doesn't matter as long as it matches the color!</p>
</div>
<div class="green">
<h2>Green -- In two player mode Reverse is treated as a Skip</h2>
<p>The other player's turn is skipped and you can play again right away. Same with draw cards!</p>
</div>
</main>
<footer>
<p>University of Michigan School of Information <br/>
© Colleen van Lent, Drew Asselin - Web Design 2019-2020</p>
</footer>
</body>
</html>