-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
89 lines (69 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tarot Journal</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Rye&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="tarot.png" type="image/x-icon">
</head>
<body>
<header>
<img src="img/starry-sky-green-209571.jpg" alt="Starry Green Sky">
<h1>Tarot Journal</h1>
<nav>
<ul>
<li><a href="pages/journal.html">Journal</a></li>
<li><a href="pages/about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<section id="table">
<!-- card 1 -->
<div class="card-wrapper" id="past">
<div class="front" id="past-card-front"></div>
<div class="back" id="past-card-back"></div>
</div>
<!-- card 2 -->
<div class="card-wrapper" id="present">
<div class="front" id="present-card-front"></div>
<div class="back" id="present-card-back"></div>
</div>
<!-- card 3 -->
<div class="card-wrapper" id="future">
<div class="front" id="future-card-front"></div>
<div class="back" id="future-card-back"></div>
</div>
<form id="user-input">
<fieldset>
<legend id="try-again"></legend>
<input id="date" type="date">
<input id="draw" type="submit" value="Draw Cards">
</fieldset>
</form>
<div id="toggle-audio-div">
<button id="toggle-audio">Toggle Audio</button>
<audio id="ambience" src="song/Sergey_Cheremisinov_-_04_-_Northern_Lullaby.mp3" loop>
</audio>
</div>
<div id="journal-button"></div>
</section>
</main>
<footer>
<p>Copyright stuff ™ ® ©</p>
<p>June 2020, Final Project</p>
<p>developed by: Hexx King, Meghan Domeck, Matt Herriges, Chandler Puckett</p>
<p><a href="https://github.com/Scooby-Squad-Team">GitHub</a></p>
<p><a href= "https://www.tarot.com/tarot/cards/major-arcana">tarot card descriptions source</a></p>
<p>
Icons made by <a href="https://www.flaticon.com/authors/smashicons" title="Smashicons">Smashicons</a> from <a href="https://www.flaticon.com/" title="Flaticon"> www.flaticon.com
</a>
</footer>
<script src="js/app.js"></script>
<script src="js/card-app.js"></script>
</body>
</html>