2015-08-31 23:03:40 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-09-23 14:17:31 -07:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<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="deal.js"></script>
|
|
|
|
<script src="deck.js"></script>
|
|
|
|
<!--meta shit-->
|
|
|
|
<title>Tarot Project By Patricia Realini</title>
|
|
|
|
<!--favicon in href... after "image" type in either "/ico" or "/png"-->
|
|
|
|
<link rel="icon" type="image/png" href="images/favicon.png">
|
|
|
|
<meta name="description" content="Tarot card readings, courtesy of JavaScript.">
|
|
|
|
<meta name="keywords" content="tarot, javascript">
|
|
|
|
<meta name="author" content="Patricia Realini">
|
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>
|