forked from itscodenation/dice-roll-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 809 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 809 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="script.js"></script>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<title>Dice Roll Game</title>
</head>
<body>
<div id="container">
<header>
<h1>Dice Roller</h1>
</header>
<section id="content">
<div class="dice" id="first-die"><img id="first"/></div>
<div class="dice" id="second-die"><img id="second"/></div>
<input id="roll-dice" type="button" value="Roll the Dice">
</section>
</div><!-- #container -->
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>