-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeck_builder.html
executable file
·36 lines (28 loc) · 969 Bytes
/
deck_builder.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
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sigil Crosses | MCC Dissertation</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" href="src/assets/css/style.css" rel="stylesheet">
<link rel="shortcut icon" href="src/assets/img/favicon.png" type="image/x-icon" />
<script src="src/lib/jquery-2.1.4.min.js"></script>
<script src="src/lib/jquery-ui-1.11.4/jquery-ui.min.js"></script>
<script src="src/lib/deck_builder.js"></script>
</head>
<body>
<center>
<h1> Sigil Crosses</h1>
<div id="button_wrapper">
<a href = "#" id = "save" download="deck.json">Save Deck</a>
			Load Deck <input type="file" id="load" />
<a href="./index.html"><button type="menu">Quit</button></a>
</div>
<div class="cardPool">
</div>
<div class="cardList">
</div>
</center>
</body>
</html>