-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_involved.html
106 lines (103 loc) · 3.34 KB
/
get_involved.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Get Involved - Promoting Gender Equality</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #7faefa;
padding: 20px;
text-align: center;
position: relative;
}
nav {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
}
nav a:hover {
background-color: #555;
}
section {
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 20px;
font-family: "Courier New", Courier, monospace;
}
footer {
background-color: pink;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
/* Images on the sides of the title */
header img {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 50px;
height: auto;
}
.left-img {
left: 80px;
width:140px;
height:100px;
}
.right-img {
right: 80px;
width:140px;
height:100px;
}
nav{
Font-family: Courier New;
}
</style>
</head>
<body>
<header>
<img src="gender.jpeg" alt="Left Image" class="left-img">
<h1 style="font-family: 'Courier New', Courier, monospace;">Get Involved</h1>
<img src="gender2.jpeg" alt="Right Image" class="right-img">
</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>
<h2>Join the Movement</h2>
<p>There are many ways you can get involved in promoting gender equality:</p>
<ul>
<li>Volunteer with local organizations working on gender equality initiatives.</li>
<li>Support gender equality campaigns and events.</li>
<li>Advocate for gender equality in your community and workplace.</li>
<li>Donate to organizations dedicated to advancing gender equality.</li>
</ul>
<p> Here are some websites you can check to promote gender equality </p>
<ul>
<li> <a href="https://equaleverywhere.org/stories/?gad_source=1&gclid=Cj0KCQjw2PSvBhDjARIsAKc2cgP_9a3dlyy-_S6A59urS4dwwoONVObto44twdIQmS4svGyOh5M3hdMaAuebEALw_wcB"> Equal Everywhere </a> </li>
<li> <a href="https://equalitynow.org/"> Equality Now </a> </li>
<li> <a href="https://www.unwomen.org/en/news-stories/feature-story/2023/10/facts-and-figures-women-and-girls-during-the-war-in-gaza?gad_source=1&gclid=Cj0KCQjw2PSvBhDjARIsAKc2cgPjOxXps0Blv3-BFjGmfHEawlDT4id47lTPBaf4S4SZjXW0W3urxXEaAkpCEALw_wcB"> UN women </a> </li>
<p>Together, we can make a difference!</p>
</section>
<footer>
<p>© Made by: Zeke Alturas</p>
</footer>
</body>
</html>