-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 1.45 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 1.45 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>T.A.S.E.R. Home</title>
<link rel="shortcut icon" href="logo.jpg" type="image/x-icon">
</head>
<body>
<div style="text-align: center;">
<h1>Welcome to T.A.S.E.R.</h1>
<p>Join and we will make your school a better place.</p>
<p>We are a group of students who are dedicated to making a difference in our school and community.</p>
<p>We are always looking for new members to join us in our mission.</p>
<p>Contact us for more information.</p>
<a href="contact.html">Contact Us</a>
</div>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background: #444;
}
nav a {
color: #fff;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
nav a:hover {
background: #555;
}
main {
padding: 20px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</body>
<footer>
<a href="about.html">Learn more about us</a>
</footer>
</html>