Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
izzyg770 committed Jan 28, 2024
0 parents commit 3d3c7db
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# hw2_simple_css
Starter code for simple css assignment
48 changes: 48 additions & 0 deletions css/html5reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
Binary file added images/favicon.ico
Binary file not shown.
Binary file added images/uno-cards.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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/>
&copy; Colleen van Lent, Drew Asselin - Web Design 2019-2020</p>
</footer>
</body>
</html>
Binary file added screen_capture1200px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3d3c7db

Please sign in to comment.