-
Notifications
You must be signed in to change notification settings - Fork 0
/
social.html
65 lines (65 loc) · 1.7 KB
/
social.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Promoting Gender Equality</title>
<style>
body {
font-family: Courier New;
margin: 0;
padding: 0;
}
header {
background-color: #7faefa;
padding: 20px;
text-align: center;
}
nav {
background-color: #333;
color: blue;
text-align: center;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
}
nav a:hover {
background-color: #555;
}
section {
padding: 20px;
}
footer {
background-color: pink;
color: #7faefa;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Promoting Gender Equality</h1>
</header>
<nav>
<a href="social.html">Home</a>
<a href="about.html">About Us</a>
<a href="get_involved.html">Join The Movement!</a>
</nav>
<section>
<center><h2>Welcome to our website!</h2>
<p>We are committed to promoting gender equality and empowering all individuals, regardless of gender identity.</p>
<p>Together, we can create a more inclusive and equitable world for everyone.</p> </center>
</section>
<center> <img src="women.gif"> </center>
<footer>
<p>© Made by: Zeke Alturas</p>
</footer>
</body>
</html>