Tarot/index.html

38 lines
1.1 KiB
HTML
Raw Normal View History

2015-08-31 23:03:40 -07:00
<!DOCTYPE HTML>
<html>
<head>
<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-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">
2015-09-16 01:40:23 -07:00
<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>