-
Notifications
You must be signed in to change notification settings - Fork 0
/
Alevel_Physics.html
131 lines (129 loc) · 3.72 KB
/
Alevel_Physics.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
125
126
127
128
129
130
131
<!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 Biology</a></li>
<li><a href="Alevel_bio.html">A level Biology</a></li>
</ul>
</li>
<div class="main-content">
<h1> A- level Physics Revision</h1>
<h3>Summary notes:</h3>
<li><a href="Alevel_Particles.html">Particles</a></li>
<li><a href="Alevel_Waves.html">Waves</a></li>
<li><a href="Alevel_Mechanics.html">Mechanics</a></li>
<li><a href="Alevel_Electricity.html">Electricity</a></li>
<li><a href="Alevel_Fields.html">Fields</a></li>
<li><a href="Alevel_Fields.html">Nuclear Physics</a></li>
<h3><a href="Alevel_Physics_MCQ.html" style="color: teal; text-decoration:none">5 Minute Multiple Choice Quiz</a></h3>
</div>
</div>
</body>
<footer> © 2023 Revisionline, All rights reserved. <a href="mailto:info@revisionline.co.uk" class="contact-button">E- mail</a></footer></html>