-
Notifications
You must be signed in to change notification settings - Fork 1
/
Explore.html
91 lines (88 loc) · 2.91 KB
/
Explore.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
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Explore</title>
<link rel="stylesheet" href="./assets/css/explore.css" />
</head>
<body>
<!-- navigation -->
<header class="header-white">
<nav class="header-white__nav">
<div class="header-white__nav__links">
<a href="./index.html">Home</a>
<a href="./Explore.html" class="active">Explore</a>
<a href="./about.html">About</a>
<div id="marker"></div>
</div>
</nav>
<div class="header-white__buttons" id="loginDiv">
<a href="./#.html" class="header-white__buttons__login">Log in</a>
<a href="./#.html" class="header-white__buttons__#">#</a>
</div>
<div id="user">
<h1 id="userEmail" style="padding: 5px"></h1>
<div class="userMenu">
<a href="./create.html">Create a Quiz</a>
<a href="#" id="logOut">Log Out</a>
</div>
<div></div>
</div>
<div class="header-white__hamburger" id="hamburger"></div>
<div id="ham-menu">
<nav class="header-white__nav ham">
<div class="header-white__nav__links">
<a href="./index.html">Home</a>
<a href="./Explore.html" class="active">Explore</a>
<a href="./about.html">About</a>
<div id="marker"></div>
</div>
</nav>
</div>
</header>
<!-- Explore banner -->
<section class="explore_banner">
<h1 style="text-align: center; padding-top: 2%; font-weight: 700">
Join Game
</h1>
<div class="input__container">
<input type="text" placeholder="Enter Quiz Code" id="gameCode" />
<button class="join__btn" id="joinBtn">Join</button>
</div>
</section>
<!-- explore quizzes section -->
<h1 style="text-align: center; color: #001464; padding-top: 2%">
Open Quizzes
</h1>
<section class="explore__quizzes">
<div class="box">
<h2>Title of Quiz</h2>
<h3>No Of Questions</h3>
</div>
<div class="box">
<h2>Title of Quiz</h2>
<h3>No Of Questions</h3>
</div>
<div class="box">
<h2>Title of Quiz</h2>
<h3>No Of Questions</h3>
</div>
</section>
<!-- footer -->
<footer class="footer">
<ul>
<li><a href="#">Terms and Services</a></li>
<li><a href="#">Privacy & Policy</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Help Center</a></li>
<li><a href="./about.html">About Us</a></li>
</ul>
<p>© 2021 Quiz Time Inc.</p>
</footer>
<script src="./assets/js/joinGame.js"></script>
<script type="module" src="./assets/js/main.js"></script>
</body>
</html>