-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_us.html
More file actions
54 lines (51 loc) · 1.36 KB
/
about_us.html
File metadata and controls
54 lines (51 loc) · 1.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>about</title>
<style>
body{
background-color: gray;
padding:30px;
font-family: sans-serif;
}
h1{
font-family: sans-serif;
text-align: center;
color:white;
font-size: 50px;
}
h4{
text-align: center;
padding:40px;
color: whitesmoke;
font-size:40px;
}
a{
text-decoration: none;
display: inline-block;
color: darkred;
width:30px;
background-color: gold;
padding: 20px 50px;
display:inline-block;
border-radius: 200px;
}
p{
font-family: sans-serif;
background-color: whitesmoke;
margin-bottom: 20px;
border-radius: 10px;
}
</style>
</head>
<body>
<h1> Nairobi School About Us</h1>
<h4>Biology Department</h4>
<a href="">click to Register</a>
<a href="">logout</a>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. At atque deleniti dicta doloremque dolorum eius fuga ipsa natus officia pariatur, quaerat qui quibusdam quo quod sit. Itaque laborum minus recusandae!</p>
<a href="index.html">to home</a>
<a href="">LOG-IN</a>
</body>
</html>