-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
31 lines (31 loc) · 954 Bytes
/
intro.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
<!DOCTYPE html>
<html>
<head>
<title>Tarot Card Generator</title>
<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=Pirata+One&family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Tarot Card Generator</h1>
<div class="card-container">
<div class="wrapper">
<button class="get-card button">Past</button>
<div class="card past"></div>
</div>
<div class="wrapper">
<button class="get-card button">Present</button>
<div class="card present"></div>
</div>
<div class="wrapper">
<button class="get-card button">Future</button>
<div class="card future"></div>
</div>
</div>
<script src="fetch.js"></script>
</body>
</html>