-
Notifications
You must be signed in to change notification settings - Fork 0
/
local-council.html
112 lines (108 loc) · 3.33 KB
/
local-council.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
107
108
109
110
111
112
<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="home-page-image.jpg" alt="hero section image">
<h1 style="color: blue;">Local Council</h1>
<p>Are you a local council 1 leader in your community? Add to our database details of families
that are facing challenges with famine in order to help them receive food donations.
</p><br><br>
<form>
<label for="name">Family Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="role">Family Address:</label><br>
<input type="text" id="address" name="address"><br>
<label for="needs">Needs:</label><br>
<input type="text" id="contact" name="contact"><br>
<label for="email">Email:</label><br>
<input type="text" id="email" name="email"><br>
<label for="password">Contact:</label><br>
<input type="text" id="contact" name="contact"><br><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
<footer></footer>