2015-08-31 23:03:40 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Tarot</title>
|
|
|
|
<link rel="stylesheet" href="stylesheet.css" />
|
|
|
|
<!--JQuery script tag has to come before the JS otherwise it won't run.-->
|
|
|
|
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
|
|
|
|
<script src="main.js"></script>
|
2015-09-04 15:37:42 -07:00
|
|
|
|
2015-08-31 23:03:40 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-09-12 14:40:38 -07:00
|
|
|
<div class="backdrop">
|
|
|
|
<div class="frame1">
|
|
|
|
<h1>ARCANA</h1>
|
|
|
|
<h2>Click on the deck</h2>
|
2015-08-31 23:03:40 -07:00
|
|
|
|
2015-09-12 14:40:38 -07:00
|
|
|
<div class="buttons">
|
2015-09-16 01:40:23 -07:00
|
|
|
<img src="images/deckback.jpg" alt="deck of cards" id="deal">
|
2015-09-12 14:40:38 -07:00
|
|
|
<br>
|
|
|
|
<input type="button" value="SHUFFLE" id="shuffle" />
|
|
|
|
</div>
|
|
|
|
<div id="hand">
|
|
|
|
</div>
|
|
|
|
<div id="reading">
|
|
|
|
</div>
|
2015-09-04 15:37:42 -07:00
|
|
|
</div>
|
2015-08-31 23:03:40 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|