-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
172 lines (163 loc) · 5.96 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" href="assets/images/fav.png" type="image" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.2/css/bulma.min.css"
integrity="sha512-byErQdWdTqREz6DLAA9pCnLbdoGGhXfU6gm1c8bkf7F51JVmUBlayGe2A31VpXWQP+eiJ3ilTAZHCR3vmMyybA=="
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<title>How Patrick are you?</title>
</head>
<body class="main">
<nav class="navbar has-shadow is-white">
<div class="container">
<div class="navbar-brand">
<a href="index.html" class="navbar-item">
<img
src="assets/images/logo-500x500.png"
class="brand-image"
alt="logo"
/>
</a>
<a
class="navbar-burger"
id="burger-icon"
aria-label="menu"
aria-expanded="false"
data-target="navbar-links"
>
<img src="assets/images/happy.png" alt="branded toggler icon" />
</a>
</div>
<div class="navbar-menu" id="nav-links">
<div class="navbar-end">
<a href="index.html" class="navbar-item active">Home</a>
<a href="quiz.html" class="navbar-item">Quiz</a>
<a href="leaderboard.html" class="navbar-item">Leaderboard</a>
</div>
</div>
</div>
</nav>
<div class="landing-image">
<h1>How Patrick Are You?</h1>
</div>
<div class="landing-info">
<h2>What is <em>How Patrick Are You?</em></h2>
<p>
How Patrick Are You is a Quiz that can be shared with friends and
compete by gaining a better position on the Leaderboard! Use this Quiz
to inject a bit of St. Patrick's Day spirit into yourself and your
friends.
</p>
<p>What are you waiting for? Click How to Play below and Get Started!</p>
</div>
<div class="container is-fluid">
<!-- Dropdown section -->
<div class="how-container columns">
<div class="dropdown column is-three-quarters">
<div class="dropdown-trigger">
<button
class="how-button"
aria-haspopup="true"
aria-controls="how-to-play-menu"
>
<span>How To Play</span>
</button>
</div>
<div class="dropdown-menu" id="how-to-play-menu" role="menu">
<div class="dropdown-content">
<div class="dropdown-item">
<figure class="media-center">
<p class="image is-64x64">
<img
class="mx-4 my-4"
src="assets/images/logo-200x200.png"
/>
</p>
</figure>
<h2>So you want to see how you compare to St. Patrick?</h2>
<h2>follow the instructions below</h2>
<ul class="instructions">
<li class="instruction-list-item">
Click on the link to the quiz, or accept the challenge
below.
</li>
<li class="instruction-list-item">
Read the questions carefully.
</li>
<li class="instruction-list-item">
Choose the answer that best reflects your choice.
</li>
<li class="instruction-list-item">Click Submit</li>
<h2 class="mt-4">
Answer all 10 Questions to find out how much like St.Patrick
you are!!
</h2>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Call to action -->
<div class="container cta-container is-fluid">
<a href="quiz.html" class="cta-button">Challenge Accepted</a>
</div>
</div>
<div class="secret-message">
<img src="assets/images/seamus-says.png" alt="Psst" />
<img
src="assets/images/seamus.png"
class="img-top"
alt="If we winter this one out we can summer anywhere - Seamus Heaney"
/>
</div>
<footer class="footer">
<div class="columns">
<div class="column">
<p class="has-text-centered">
<a href="privacy-policy.html">Privacy Policy</a>
</p>
</div>
<div class="column">
<p class="has-text-centered social-links">
<a target="_blank" rel="noopener" href="https://www.facebook.com/">
<i class="fab fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
<a target="_blank" rel="noopener" href="https://www.instagram.com/">
<i class="fab fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
<a target="_blank" rel="noopener" href="mailto:someone@example.com">
<i class="fas fa-envelope" aria-hidden="true"></i>
<span class="sr-only">Email</span>
</a>
</p>
</div>
<div class="column">
<p class="has-text-centered">
<a href="accessibility.html">Accessibility</a>
</p>
</div>
</div>
</footer>
<script src="assets/js/main.js" type="module" defer></script>
<script src="assets/js/egg.js" defer></script>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-firestore.js"></script>
</body>
</html>