-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
62 lines (61 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en-gb">
<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="css/style.css" />
<link rel="stylesheet" href="css/normalize.css" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Subrayada&display=swap"
rel="stylesheet"
/>
<title>Kanye or Trump? Who said it?</title>
</head>
<body>
<span class="header-container">
<header tabindex="0">Who said it: Trump or Kanye?</header>
</span>
<main class="quiz-container">
<section class="quiz-question">
<article class="show-quote" tabindex="0">
...Finding your next #TrumpYe quote!
</article>
<section class="quiz-responses">
<article class="trump-container answer-container">
<img
src="https://static.independent.co.uk/s3fs-public/thumbnails/image/2019/07/17/08/donald-trump.jpg"
tabindex="0"
width="100px"
alt=""
/>
<button class="trump-btn">Trump</button>
</article>
<section class="score-skip-container">
<div class="score-title" tabindex="0">Score:</div>
<div class="score-container">
<div class="score-total" tabindex="0">0</div>
</div>
<button class="skip-btn">Skip</button>
</section>
<article class="kanye-container answer-container">
<img class="kanye-image"
src="https://media.vanityfair.com/photos/5bbcd5aeb2ab083a47a5c29c/16:9/w_1280%2Cc_limit/Kanye-Trump.jpg"
tabindex="0"
width="100px"
alt=""
/>
<button class="kanye-btn">Kanye</button>
</article>
</section>
</section>
<section class="quiz-answer">
<img class="trump-img" width: 300px alt="happy trump"> <img
class="kanye-img" width: 300px alt="happy kanye">
<h3 id="answer-result">Placeholder</h3>
<button class="next-btn">Next</button>
</section>
</main>
</body>
<script type="text/javascript" src="js/script.js"></script>
</html>