-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (83 loc) · 3.16 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
<!DOCTYPE html>
<html>
<link rel="shortcut icon" type="image/x-icon" href="img/icon.png">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Sailor Moon Concentration</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script defer src="js/script.js"></script>
<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=Press+Start+2P&display=swap" rel="stylesheet">
<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=Source+Code+Pro&display=swap" rel="stylesheet">
</head>
<div class="start-modal-container" id="start-modal-container">
<div class="start-modal">
<div class="chat-bubble">
<h1>hi, friend!</h1>
<p>welcome to sailor moon concentration!<br /><br />you'll have 60 seconds to match as many of the sailor scouts as you can!</p>
</div>
<img src="img/artemis-luna.png">
<button id="start-game">
<span class="front">
let's play!
</span>
</button>
</div>
</div>
<div class="reset-modal-container" id="reset-modal-container">
<div class="reset-modal">
<img src="img/tuxedo.png">
<p>you snooze,<br />you lose!</p>
<button id="reset">
<span class="front">
try again!
</span>
</button>
</div>
</div>
<div class="win-modal-container" id="win-modal-container">
<div class="win-modal">
<img src="img/win.png">
<p>you win!</p>
<button id="play-again">
<span class="front">
play again!
</span>
</button>
</div>
</div>
<body>
<div id="logo"><img src="img/logo.png"></div>
<span class="timer" id="counter"></span>
<h2></h2>
<main>
<img src="" id="0" alt="">
<img src="" id="1" alt="">
<img src="" id="2" alt="">
<img src="" id="3" alt="">
<img src="" id="4" alt="">
<img src="" id="5" alt="">
<img src="" id="6" alt="">
<img src="" id="7" alt="">
<img src="" id="8" alt="">
<img src="" id="9" alt="">
<img src="" id="10" alt="">
<img src="" id="11" alt="">
<img src="" id="12" alt="">
<img src="" id="13" alt="">
<img src="" id="14" alt="">
<img src="" id="15" alt="">
<img src="" id="16" alt="">
<img src="" id="17" alt="">
<img src="" id="18" alt="">
<img src="" id="19" alt="">
</main>
</body>
<footer>
website created by <a href="https://github.com/alexehouston">@alexehouston</a>
</footer>
</html>