-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<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=Merriweather&family=Montserrat&display=swap" rel="stylesheet">
<style>
body {
background-color: aliceblue;
}
h1, h2 {
font-family: 'Montserrat', sans-serif;
}
h2 {
background-color: paleturquoise;
border-radius: 5px;
max-width: 50%;
}
a, p {
font-family: 'Merriweather', serif;
}
a:active {
font-size: 14px;
}
</style>
<title>School Resources</title>
</head>
<body>
<img src="school/manaratlogo.png" style="float: right;" height="100px" />
<h1>School Resources for Grade 9</h1>
<h2>General resources</h2>
<a href="school/timetable.pdf">Timetable</a>
<br>
<a href="school/weeklyplans/weeklyplans.html">Weekly Plans</a>
<br>
<a href="school/Parent-Student Handbook.pdf">Parent-Student Handbook</a>
<br>
<h2>Subjects</h2>
<a href="school/chemistry.html">Chemistry</a>
</body>
</html>