-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
120 lines (112 loc) · 5.39 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
<!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">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<title>👑Drag Race Queen Quotes!</title>
<link rel="stylesheet" href="./styles/styles.css">
<script src="https://kit.fontawesome.com/279611ab89.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="wrapper">
<a class="logo" href="https://www.vh1.com/shows/rupauls-drag-race" target="__blank">
<img class="logoImg" src="./assets/logoWhite.png" alt="RuPaul Drag Race logo">
</a>
<div class="headerTextContainer">
<h1><span class="rainbow">Queen</span> Quotes!</h1>
<h2>How well do you know the words of the <span>Drag Race superstars?</span></h2>
<h3>Good luck, and Don't F*** It Up!</h3>
<div class="button startGame">
<a href="">Start Game</a>
<!-- JS function to scroll into view -->
</div> <!-- .button .startGame ends-->
</div> <!-- .headerTextContainer ends-->
</div> <!-- .wrapper ends-->
</header>
<main>
<section id="quizSection" class="quiz"">
<div class=" mainTextContainer">
<div class="wrapper">
<h3>Which QUEEN famously said...</h3>
<h4 class="quoteContainer correctQueen">
<!-- just a placeholder for <h4> now because it will be generated via JS -->
</h4>
<ul class="answersContainer" id="ulContainer">
<!-- JS to create <li> elements as such: -->
<!-- <li class="button answers" ></li>
<li class="button answers"></li> -->
</ul>
</div> <!-- .wrapper ends-->
</div> <!-- .mainTextContainer ends-->
</section>
<div class="hiddenMain">
<div class="wrapper">
<div class="confirmationContainer">
<!-- just a placeholder for <p> now because it will be generated via JS -->
</div> <!-- .confirmationContainer ends-->
<div class="hiddenImgContainer correctQueen">
<img id="hiddenImg" src="" alt="Image of the Queen who said the quote">
<!-- just a placeholder for <img> now because it will be generated via JS -->
</div> <!-- .hiddenImgContainer .correctQueen ends-->
<div class="hiddenButtonContainer">
<button class=" button hiddenButton">Replay</button>
</div> <!-- .hiddenImgContainer ends-->
</div> <!-- .wrapper ends-->
</div> <!-- .hiddenMain ends-->
</main>
<footer>
<div class="footerMainContainer">
<div class="footerImg">
<img src="./assets/ruPaulPopArt.jpeg" alt="popart of RuPaul gasping">
</div> <!-- .footerImg ends-->
<div class="footerTextContainer">
<h5>"If you can't love yourself, how in the hell are you going to love somebody else?!"
<span>-RuPaul</span>
</h5>
<ul class="socialMedias">
<li>
<a href="https://www.facebook.com/rupaulsdragrace/" target="__blank"
aria-label="Go to RuPaul's Drag Race Facebook page">
<i class="fa-brands fa-facebook-f"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/rupaulofficial/?hl=en" target="__blank"
aria-label="Go to RuPaul's Drag Race Instagram page">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.tiktok.com/@rupaulofficial?lang=en" target="__blank"
aria-label="Go to RuPaul's Drag Race Tiktok page">
<i class="fa-brands fa-tiktok"></i>
</a>
</li>
<li>
<a href="https://twitter.com/rupaulsdragrace/?lang=en" target="__blank"
aria-label="Go to RuPaul's Drag Race Twitter page">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
</ul>
</div> <!-- .footerTextContainer ends-->
</div> <!-- .footerMainContainer ends-->
<div class="footerContributions">
<p>
<span>Created by QUEENS👑
<a href="https://github.com/chriskimty" target="__blank">Chris</a> &
<a href="https://github.com/paulavivasteixeira" target="__blank">Paula</a>
</span>
</p>
<p>Copyright© 2022
<a href="http://junocollege.com/" target="_blank">Juno College of Technology</a>
</p>
</div> <!-- .footerContributions ends-->
</footer>
<script src="./firebase.js" type="module"></script>
<script src="./app.js" type="module"></script>
</body>
</html>