Tarot/index.html

31 lines
683 B
HTML
Raw Normal View History

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-08-31 23:03:40 -07:00
</head>
<body>
<div class="backdrop">
<div class="frame1">
<h1>ARCANA</h1>
<h2>Click on the deck</h2>
2015-08-31 23:03:40 -07:00
<div class="buttons">
<img src="images/deckback.jpg" alt="deck of cards" id="deal" />
<br>
<input type="button" value="SHUFFLE" id="shuffle" />
</div>
<div id="hand">
</div>
<div id="reading">
</div>
</div>
2015-08-31 23:03:40 -07:00
</div>
</body>
</html>