-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (94 loc) · 3.19 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tarot Teller</title>
<link
href="https://cdn.muicss.com/mui-0.10.3/css/mui.min.css"
rel="stylesheet"
type="text/css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.5/dayjs.min.js"
integrity="sha512-Ot7ArUEhJDU0cwoBNNnWe487kjL5wAOsIYig8llY/l0P2TUFwgsAHVmrZMHsT8NGo+HwkjTJsNErS6QqIkBxDw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.5/plugin/relativeTime.min.js"></script>
<script>
dayjs.extend(window.dayjs_plugin_relativeTime);
</script>
<style>
body {
font-family: "Almendra", serif !important;
background-image: url("./assets/css/background-img/blue-cards.jpg");
}
</style>
</head>
<body>
<header
class="mui-appbar mui--z3"
style="
background-color: #546e7a;
background: linear-gradient(
to top,
rgba(106, 133, 182, 0.85),
rgba(153, 182, 232, 0.85)
);
"
>
<div class="mui--appbar-height mui--text-light">
<h1
class="mui--text-display3 row wow zoomInDown mui--text-center"
style="margin-top: 0.2rem"
>
<header class="mui-appbar mui--z3" style="background-color:#546E7A; background: linear-gradient(to top, rgba(106,133,182,0.95), rgba(135,167,222,0.95));">
<div class="mui--appbar-height mui--text-light">
<h1 class="mui--text-display3 row wow zoomInDown mui--text-center" style=" margin-top: 0.2rem;">
Your TarotTeller
</h1>
</div>
</header>
<main>
<div
class="mui--text-display3 row wow zoomInDown mui--text-center"
style="margin-top: 3.2rem"
>
<strong>Your Daily Tarot Reading</strong>
</div>
<div id="cardName"></div>
<div id="cardPlace"></div>
<div id="cardDescription"></div>
<div class="select-card">
<button
class="mui-btn mui-btn--raised mui-btn--large mui-btn--primary"
style="
background-color: #546e7a;
background: linear-gradient(
to top,
rgba(106, 133, 182, 1.0),
rgba(135, 167, 222, 1.0)
);
"
id="button"
>
<b><strong>Reveal Your Fortune...</strong></b>
</button>
</div>
<div id="cardName"></div>
<div id="cardPlace"></div>
<div id="cardDescription"></div>
<div id="comeBackTommorow" style="text-align: center; color: rgb(9, 0, 0)"></div>
</main>
<script src="./assets/js/script.js"></script>
</body>
</html>