25 lines
576 B
HTML
25 lines
576 B
HTML
|
<!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>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>IN THE CARDS</h1>
|
||
|
<h2>Click on the deck</h2>
|
||
|
|
||
|
<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>
|
||
|
|
||
|
</body>
|
||
|
</html>
|