-
Notifications
You must be signed in to change notification settings - Fork 0
/
volunteering.html
102 lines (98 loc) · 2.97 KB
/
volunteering.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
<head>
<title>Famine Fighters</title>
<style>
body {
background-color: rgb(214, 234, 214);
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.navbar {
overflow: hidden;
background-color: #333;
position: fixed; /* Make the navbar stay at the top */
top: 0;
width: 100%;
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
.navbar li {
display: inline;
}
.navbar li a {
display: inline-block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
transition: background-color 0.3s;
}
.navbar li a:hover {
background-color: #575757;
}
.content {
padding: 60px 20px; /* Adjust to ensure content is not hidden behind the navbar */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
h1 {
color: blue;
text-align: center;
margin-top: 20px;
}
p {
text-align: center;
margin: 0 auto;
width: 60%;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
form label,
form input {
margin-bottom: 10px;
width: 100%;
max-width: 300px;
}
form input[type="submit"] {
width: auto;
}
img {
display: block;
margin: 20px auto;
}
</style>
</head>
<body style="background-color: rgb(214, 234, 214);">
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="donate.html">Donate Food</a></li>
<li><a href="local-council.html">Local Council Leader</a></li>
<li><a href="volunteering.html">Volunteering</a></li>
</ul>
</div>
<div class="content">
<img src="volunteering.jpg" alt="hero section image">
<h1 style="color: blue;">Food Transportation Volunteering Opportunities</h1>
<p>Volunteer to transport food from the food donor's location to families in Karamoja within the following areas</p>
<ul>
<li><a href="katanga-deliver.html">Deliver Food from Naoi to Katanga</a></li><br>
<li><a href="katanga-deliver.html">Deliver Food from Katanga to Naoi</a></li><br>
<li><a href="katanga-deliver.html">Deliver Food from Katanga to Rupa</a></li>
</ul>
<div class="content">
</body>
<footer></footer>