-
Notifications
You must be signed in to change notification settings - Fork 0
/
GCSE_bio.html
124 lines (121 loc) · 3.23 KB
/
GCSE_bio.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>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<head>
<title>Revisionline</title>
<style>
/* Define styles for the header and footer */
header {
background-color: grey;
color: teal;
padding: 10px;
text-align: center;
font-family: 'Open Sans', sans-serif;
padding-left: 15px;
}
footer {
background-color: grey;
color: lightblue;
padding: 10px;
text-align: center;
font-family: 'Open Sans', sans-serif;
padding-left: 15px;
}
/* Define styles for the menu buttons */
.menu-button {
background-color: grey;
color: lightblue;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
margin-right: 0px;
font-family: 'Open Sans', sans-serif;
list-style-type: none;
position: relative;
display: inline-flex;
align-items: center;
}
.menu-button ul {
display: none;
position: absolute;
top: 100%;
left: 0;
margin: 0;
padding: 0;
background-color: grey;
z-index: 1;
}
.menu-button:hover ul {
display: inline-block;
}
.menu-button li {
margin: 0;
padding: 5px;
list-style-type: none;
}
/* Define styles for the main content */
.main-content {
background-color: white;
padding: 0px;
text-align: center;
font-family: 'Open Sans', sans-serif;
}
body {
font-size: 18px;
line-height: 1.5;
margin: 0;
padding: 0;
}
.contact-button {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
text-decoration: none;
color: white;
background-color: teal;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<header>
<img src="logo.png">
<div>
<ul>
<li class="menu-button">
<a href="index.html" class="menu-button">Home</a>
<li class="menu-button">
Physics
<ul>
<li><a href="GCSE_Physics.html">GCSE Physics</a></li>
<li><a href="Alevel_Physics.html">A level Physics</a></li>
</ul>
</li>
<li class="menu-button">
Chemistry
<ul>
<li><a href="GCSE_Chem.html">GCSE Chemistry</a></li>
<li><a href="Alevel_Chem.html">A level Chemistry</a></li>
</ul>
</li>
<li class="menu-button">
Maths
<ul>
<li><a href="mathsmatrix.html">Maths</a></li>
</ul>
<li class="menu-button">
Biology
<ul>
<li><a href="GCSE_bio.html">GCSE</a></li>
<li><a href="Alevel_bio.html">A level</a></li>
</ul>
</li>
<div class="main-content">
<h1> GCSE Biology Revision </h1>
<p></p>
</div>
</body>
<footer> © 2023 Revisionline, All rights reserved. <a href="mailto:naail.khokhar@icloud.com" class="contact-button">Contact Us</a></footer></html>