-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (89 loc) · 2.96 KB
/
index.html
File metadata and controls
91 lines (89 loc) · 2.96 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"
/>
<title>Single Players Dice</title>
</head>
<body>
<div class="container">
<!-- header banner -->
<div class="heading">
<div class="headingContent">
<h1>Dice 1 Player</h1>
<h2>{CN} Masters 38</h2>
</div>
</div>
<!-- content -->
<div class="content" id="textArea">Score 21 to win! Roll a 1 and game is over!
Press New Game to start.
Click center of dice to roll.
</div>
<!-- white part -->
<!-- dice -->
<div class="content">
<!-- 9 faced dice -->
<div class="dice" id="p1">
<div class="column">
<span class="dot" id="p1_d1"></span>
<span class="dot" id="p1_d2"></span>
<span class="dot" id="p1_d3"></span>
</div>
<div class="column">
<span class="dot"></span>
<span class="dot" id="p1_d5"></span>
<span class="dot"></span>
</div>
<div class="column">
<span class="dot" id="p1_d7"></span>
<span class="dot" id="p1_d8"></span>
<span class="dot" id="p1_d9"></span>
</div>
</div>
</div>
<div class="content" id="p1">
<ul> <li>Player 1 Score
<p id="p1_score">-</p>
</li>
<li id="restart">New Game</li>
<li>Roll Count
<p id="p1_count">-</p>
</li>
</ul>
</div>
<!-- dont touch -->
</div>
<!-- <footer> -->
<div class="foot">
Katherine Ayers | Indykatz
<nav class="flex-nav">
<ul>
<li class="social">
<a ><i class="fa fa-twitter"></i></a>
</li>
<li class="social">
<a ><i class="fa fa-facebook"></i></a>
</li>
<li class="social">
<a href="http://github.com/Indykatz" target="_blank"
><i class="fa fa-github"></i
></a>
</li>
<li class="social">
<a ><i class="fa fa-instagram"></i></a>
</li>
</ul>
</nav>
</div>
<!-- JS script -->
<script src="app.js"></script>
<!-- </footer> -->
</div>
</body>
</html>