-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (55 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name=”viewport”, content=”initial-scale=1.0”, content=”width=device-width” >
<link href="https://fonts.googleapis.com/css?family=Cutive+Mono|Homemade+Apple" rel="stylesheet">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<title>ART memo</title>
</head>
<body>
<header>
<div class="container">
<p id="quote"></p>
<span id="author"></span>
</div>
</header>
<section id="board" class="">
<div class="tile"></div>
</section>
<section id="skip">
<div class="container">
<div class="art-memo__skip">
<input type="button"
id="skip-button"
class="art-memo__skip__button"
value="skip the game">
</div>
</section>
<section id="timeline" class="hidden">
<div class = "container">
<div id="periods" class="art-memo__timeline">
</div>
</div>
</section>
<section id="reload" class="hidden">
<div class="container">
<div class="art-memo__reload">
<input type="button"
value="play again"
onClick="window.location.reload()"
class="art-memo__reload__button">
</div>
</div>
</section>
<footer>
<div class="container">
<span class="copyright"> CopyrightⒸ2018 Alicja Otto</span>
</div>
</footer>
<script src="js/out.js"></script>
</body>
</html>