-
Notifications
You must be signed in to change notification settings - Fork 0
/
walkoffame.html
73 lines (69 loc) · 3.03 KB
/
walkoffame.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>movieIQ🎬</title>
<!-- Google font Overpass -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Overpass:wght@700&display=swap" rel="stylesheet">
<!-- Lato font -->
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Orbitron:wght@900&display=swap"
rel="stylesheet">
<!-- Foundation CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css"
integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I=" crossorigin="anonymous">
<!-- Our styles -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Nav Bar -->
<div data-sticky-container>
<div class="title-bar" data-sticky data-options="marginTop:0;" style="width:100%">
<nav class="nav-bar">
<ul class="menu">
<li class="menu-text"><strong>movieIQ🎬</strong></li>
<li><a class="menu-text game-link" href="index.html">Home</a></li>
<li><a class="menu-text game-link" href="#">Highscores</a></li>
</ul>
</nav>
</div>
</div>
<main class="walk-of-fame-background">
<h1 class="title">
<!-- Icon taken from frepnglogos.com -->
<a href="https://www.freepnglogos.com/images/oscar-38937.html" title="Image from freepnglogos.com"><img
src="https://www.freepnglogos.com/uploads/oscar-png/the-oscar-emblem-8.png" width="50"
alt="the oscar emblem" /></a>
Walk of Fame
</h1>
<!-- -->
<section class="flex-container">
<div id="my-grid" class="grid-x align-left grid-style">
</div>
</section>
<!-- Modal -->
<div class="reveal" id="topScoreModal" data-reveal>
<h1>Congratulations! You made the Walk of Fame!</h1>
<div class="input-group input-group-rounded centered">
<input id="user-name" class="input-group-field" type="text" value="Enter your name">
<div class="input-group-button">
<input id="enter-button" type="submit" class="button secondary" value="Enter" data-close>
</div>
</div>
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="false">×</span>
</button>
</div>
</main>
<!-- Jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"
integrity="sha256-eGE6blurk5sHj+rmkfsGYeKyZx3M4bG+ZlFyA7Kns7E=" crossorigin="anonymous"></script>
<!-- Foundation Compressed JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<!-- <script src="assets/js/script.js"></script> -->
<script src="assets/js/walkoffame.js"></script>
</body>
</html>