-
Notifications
You must be signed in to change notification settings - Fork 1
/
projectThree.html
48 lines (46 loc) · 1.85 KB
/
projectThree.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
<!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" />
<!-- ! Stylesheet -->
<link rel="stylesheet" href="./CSS/projectThree.css" />
<!-- ! Global Font Links -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<!-- ! FontAwesoe Link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Riddles</title>
</head>
<body>
<!-- * Project 3 : Accordion -->
<div class="accordion">
<h2 class="accordion-title">Popular Riddles</h2>
<div class="content-container">
<div class="question">Iron roof, glass walls Burns and burns And never falls.</div>
<div class="answer">Lantern</div>
</div>
<div class="content-container">
<div class="question">The rich men want it, the wise men know it, the poor all need it, the kind men show it.</div>
<div class="answer">Love</div>
</div>
<div class="content-container">
<div class="question">Look at me. I can bring a smile to your face, A tear to your eye, Or even a thought to your mind. But, I can't be seen. What am I?</div>
<div class="answer">Memories</div>
</div>
</div>
<!-- ! Script Link -->
<script src="./Javascript/projectThree.js"></script>
</body>
</html>