-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.63 KB
/
index.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<title>Random Tarot [DEMO]</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> -->
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="w3-container">
<h1 class="w3-center"><strong>Random Tarot</strong></h1>
<p id="credit" align="center" ><i>Tarot card interpretations data from</br>
Mark McElroy's <code>"Guide to Tarot Meanings"</code></i></br></p>
</div>
<div class="w3-container box-2">
<div class="w3-row w3-center w3-display-center">
<div class="w3-half" style="max-height: 70%">
<div class="w3-container w3-center">
<img id="tcard" src="">
</div>
</div>
<div class="w3-half">
<div class="w3-container text_box">
<p id="main_text" align="left"></p>
<p id="sup_text" align="left"></p>
</div>
</div>
</div>
</div>
<div class="w3-center" id="disappear">
<button onclick="get_card()">Click to get a card</button>
</div>
<script src="js/script.js"></script>
</body>
</html>