forked from juneate/dice-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (27 loc) · 848 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dice Game</title>
<meta name="description" content="Roll the dice randomly and display that graphically to the user.">
<meta name="author" content="Rocco P">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--
Step 1: Build the HTML/CSS Prototype to look like this:
You rolled: three
_____________
| |
| 0 |
| 0 |
| 0 |
|_____________|
Consider the different ways we can write
the above site with HTML and/or CSS.
-->
<script src="js/main.js"></script>
</body>
</html>