-
Notifications
You must be signed in to change notification settings - Fork 1
/
ravenclaw.htm
79 lines (74 loc) · 2.79 KB
/
ravenclaw.htm
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
<!-- Ravenclaw House Page -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
h2{
text-align: center;
font-family: serif;
text-shadow: 1.5px 1.5px blue;
color: violetblue;
}
.inner{
text-align: justify;
background-color: darkblue;
font-family: serif;
color: white;
padding: 30px;
margin: 9px;
border-radius: 10px;
border: 3px solid rgb(10,0,50);
}
</style>
<link rel="stylesheet" href='style.css'>
<link href='https://fonts.googleapis.com/css?family=Alegreya SC' rel='stylesheet'>
<title>Hogwarts School of Witchcraft and Wizardry</title>
</head>
<body>
<h1>Hogwarts School of Witchcraft and Wizardry</h1>
<ul id="hor">
<li><a href="home.htm">Home</a></li>
<li><a href="about.htm">About</a></li>
<li class="dropdown">
<a href="javascript:void(0)">Faculty</a>
<div class="dropdown-content">
<a href="rosa.htm">Rosa</a>
<a href="olly.htm">Olly</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)">Students</a>
<div class="dropdown-content">
<a href="tux.htm">Tux</a>
<a href="keshav.htm">Keshav</a>
</div>
</li>
<li class="dropdown active">
<a href="javascript:void(0)">Houses</a>
<div class="dropdown-content">
<a href="gryffindor.htm">Gryffindor</a>
<a href="slytherin.htm">Slytherin</a>
<a href="ravenclaw.htm">Ravenclaw</a>
<a href="hufflepuff.htm">Hufflepuff</a>
</div>
</li>
<!--- <li><a href="results.htm">Results</a></li> -->
</ul>
<ul id="nav">
<li><a href="">Current News</a></li>
<li><a href="">Rules</a></li>
<li><a href="">Photo Gallery</a></li>
<li id="date" onload='this.innerHTML=date();'</li> <!-- Refresh Icon here -->
</ul>
<br>
<div class ="content">
<h2>Ravenclaw House</h2>
<img src="./pictures/raven.gif" class="house" alt="Ravenclaw house crest">
<div class="inner">
<p>Ravenclaw house was found by Rowena Ravenclaw. The house colors are blue and bronze and the animal is an eagle. Ravenclaws have some particular traits: Intelligence, Wit, Wisdom, creativity, originality, individuality and acceptance being the major ones. Their most prized possessions include a diadem, also called the lost diadem. Ravenclaw house prizes learning, wisdom and intellect in its members. Thus most Ravenclaws tend to be academically motivated and talented students. Ravenclaws are extremely competitive when it comes to academic success. Students in Ravenclaw can be quirky and possess unusual academic interests.</p>
<p>Some notable Ravenclaws include Tux Torvalds, Itasha and Rosa.</p>
</div>
</div>
</body>
</html>