-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Original+Surfer&display=swap"
rel="stylesheet"
/>
<title>Surfer Trivia</title>
</head>
<body>
<!-- Referred to w3schools and GA advisors for syntax -->
<main>
<header>Surfer Trivia</header>
<!--Score elements-->
<div class="scoreBoard">
<h3 class="score rips">Rips: 0</h3>
<h3 class="score wipeouts">Wipeouts: 0</h3>
</div>
<!--Call to action-->
<button id="play" class="letsPlay">Let's Play!</button>
<!--Q&A elements-->
<!-- <div class="questionHint"><img src="" class="imageHint" /></div> -->
<div class="qAndA">
<p class="question"></p>
<p class="results"></p>
</div>
</main>
<footer class="footer">
Photo by
<a
href="https://unsplash.com/@raizen?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
target="_blank"
>roman raizen</a
>
on Unsplash
</footer>
<script src="script.js"></script>
</body>
</html>