-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.html
124 lines (105 loc) · 4.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Favicon added here -->
<link rel="icon" href="images/favicon-32x32.png">
<title>Hogwarts</title>
<link rel="stylesheet" href="hogwarts.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script src="prefixfree.min.js"></script>
<script src="./index.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<nav class="menu">
Menu
<ul class="sub-menu">
<li><a class="sub-menu__links" href="#home">Quiz</a></li>
<li><a class="sub-menu__links" href="#para">About</a></li>
<li><a class="sub-menu__links" href="#houses">Houses</a></li>
</ul>
</nav>
<button onclick="topFunction()" id="myBtn" title="Go to top"><i class="fas fa-arrow-circle-up"></i></button>
<header>
<h1 id="hog">Hogwarts</h1>
<h1 id="hog1">School of Witchcraft and Wizardry</h1>
<h3 id="dr"> ~Draco-Dormiens-Nunquam-Titillandus~ </h3>
</header>
<main>
<div class="section">
<h4 class="fact"></h4>
<h2 id="heading">I solemnly swear that I am upto no good!</h2>
<img id="img" src="https://cdn.hipwallpaper.com/i/69/77/HMRcJX.jpg" alt="hogwarts">
<br>
<div class="container">
<div id="home" class="flex-column flex-center">
<h1>Harry Potter Quiz!🧙♂️</h1>
<a href="game.html" class="btn">Play</a>
<a href="highscores.html" id="highscore-btn" class="btn">Highscore<i class="fas fa-crown"></i></a>
</div>
</div>
<p></p>
<p></p>
</div>
</main>
<main>
<div class="sec">
<h3 id="para">
At some point in the tenth century, four of the greatest witches and wizards that ever lived founded
Hogwarts School of Witchcraft and Wizardry.
Their names were Godric Gryffindor, Rowena Ravenclaw, Helga Hufflepuff and Salazar Slytherin.
As The Sorting Hat told us, their reason for doing so was because they had the ‘selfsame yearning,
to make the world’s best magic school’, and once they did, each created their own house to represent
a personality and skill that they wanted to nurture.
<br>
<br>
Hogwarts School, located somewhere in the Highlands of Scotland, consisted of the large Hogwarts Castle
and extensive school grounds surrounding it, which included sloping lawns, flowerbeds, vegetable
patches, as well as a loch (called the Black Lake), a large dense forest (called the Forbidden Forest),
several greenhouses and other outbuildings, and a full-size Quidditch Pitch.
<br>
.....Gryffindor students embodied bravery and chivalry.....
<br>
.....Ravenclaw, intelligence and wit.....
<br>
.....Hufflepuff, loyalty and fair play.....
<br>
.....Slytherin, the values of being sly and cunning.....
</h3>
<h3 id="h3">“It does not do to dwell on dreams and forget to live” - Albus Dumbeldore</h3>
<br>
</div>
</main>
<main>
<div id="houses" class="sec2">
<div>
<a href="./Gryffindor/Gryffindor.html" target="_blank">
<img class="ig" id="ig1"
src="https://i.pinimg.com/originals/1a/64/49/1a6449ba53c49b816d56c5abbbb1d8dc.jpg"
alt="Gryffindor"></a>
<br>
<a href="./Ravenclaw/ravenclaw.html" target="_blank">
<img class="ig" id="ig2"
src="https://www.redwolf.in/image/catalog/artwork-Images/mens/ravenclaw-crest-t-shirt-artwork.jpg"
alt="Ravenclaw"></a>
</div>
<div>
<a href="./Hufflepuff/Hufflepuff.html" target="_blank">
<img class="ig" id="ig3"
src="https://www.redwolf.in/image/catalog/artwork-Images/mens/hufflepuff-crest-t-shirt-artwork.jpg"
alt="Hufflepuff"></a>
<br>
<a href="./Slytherin/slytherin.html" target="_blank">
<img class="ig" id="ig4"
src="https://i.pinimg.com/originals/de/d8/7e/ded87e4b3dad3327988511af87724206.jpg"
alt="Slytherin"></a>
</div>
<div>
<br>
</main>
<footer>
<p>Made with ❤️ by <a href="https://github.com/arnav1776" target="_blank">Arnav</a> & Team.❥</p>
</footer>
</body>
</html>