-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (19 loc) · 741 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (19 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<head>
<title> My Tarot App </title>
<link rel="stylesheet" href="style.css">
<script src="tarot.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<div class ="center">
<button onclick="drawACard()" style="padding:6px; margin-right:10px; margin-bottom:10px" > Draw a card </button>
<button onclick="shuffleCard()" style="padding:6px; margin-right:10px; margin-bottom:10px" > Shuffle </button>
<div class="picked-card" style= "height:510px;">
<div class="pattern"></div>
<img class="img-responsive face" src="card-0.jpg" alt="">
</div>
<div class="card-description" style="color:#ffffff; font-size:17px"></div>
</div>
</body>
</html>