-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (58 loc) · 2.22 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">
<title>Glorious Pegasus Match Game</title>
<link rel="stylesheet" href="index.css">
<link href=“https://fonts.googleapis.com/css?family=Mountains+of+Christmas%7COpen+Sans+Condensed:300&display=swap” rel=“stylesheet”>
<script defer type="text/javascript" src="adapter.js"></script>
<script defer type="text/javascript" src="index.js"></script>
<script defer type="text/javascript" src="game.js"></script>
<script defer type="text/javascript" src="user.js"></script>
</head>
<body>
<header id="header">
<h1 id="title">🦄 Glorious Pegasus Match Game 🦄</h1>
<div id="menu-bar">
<p id="new-game" class="menu-item">New Game</p>
<p id="rules" class="menu-item">Rules</p>
<p id="leaderboard" class="menu-item">Leaderboard</p>
<p id="user-button" class="menu-item">Log In</p>
</div>
</header>
<div id="game-flex-box">
<div id="game-container" class="game-deets">
<h1 id="game-h1"> Moves:</h1>
<h1 id="click-count">0</h1>
<div id="game-grid">
<!-- 2x2 card grid -->
</div>
</div>
<div id="right-panel" class="game-deets">
<div id="rt-panel-data">
<h1>Welcome To</h1>
<h1>Glorious Pegasus</h1><h1>Match Game</h1>
<br>
<h2>Log In Above To Play</h2>
</div>
<div id="rt-panel-middle">
<h1></h1>
</div>
<div id="rt-panel-bottom">
<h1></h1>
</div>
</div>
</div>
<div class="gameOver">
<center><h2>🎉 Congratulations 🎉</h2></center>
<center><h2>🦄 You are glorious 🦄</h2></center>
<!-- <center><p>You made <span id=finalMove> </span> moves </p></center> -->
<center><button class="closeBtn" onclick="newGame()"> New Game</button></center>
</div>
<footer>
<p>Artwork by: <a href="https:">Rachel Rath</a></p>
<p><a href="https://accesslabs.org">Flatiron School/Access Labs MOD 3 Project</a></p>
<p>Created by: <a href="https://github.com/dalelore">DaleLore</a> & <a href="https://github.com/sticklercarla">Carla Stickler</a></p>
</footer>
</body>
</html>