-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>Pyramids</title>
<link rel='stylesheet' type='text/css' href='pyramids.css'/>
<link href="assets/favicon.ico" rel="icon" type="image/x-icon" />
<link rel='stylesheet' type='text/css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css'/>
<script type='text/javascript' src='https://code.jquery.com/jquery-2.1.0.min.js'></script>
<script type='text/javascript' src='pyramids.js'></script>
</head>
<body>
<header>
<h1>Pyramids</h1>
<a href="https://racoonsmakeokayfriends.github.io" alt="home"><i class="fa fa-home"></i></a>
</header>
<div class="container grid" id="stats">
<label># cards left in pile:</label>
<span id="cards_left">23</span>
</div>
<div class="container">
<div class="pile squared" id="stock" alt="stock-pile">
</div>
<div class="pile squared" id="waste" alt="waste-pile">
</div>
</div>
<div class="container" id="pyramid_board">
</div>
<button id="start_btn">start game</button>
</body>
</html>