-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvolunteerabroad.html
180 lines (173 loc) · 5.38 KB
/
volunteerabroad.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SHEQUALITY — Volunteer</title>
<link
rel="apple-touch-icon"
href="https://cdn.glitch.com/9358b7d4-1332-4e69-bee5-c76ab151e1b0%2Foutput-onlinepngtools%20(3).png?v=1594870759533"
/>
<link
rel="icon"
sizes="192x192"
href="https://cdn.glitch.com/9358b7d4-1332-4e69-bee5-c76ab151e1b0%2Foutput-onlinepngtools%20(3).png?v=1594870759533"
/>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="volunteer.css" />
<!-- import the webpage's javascript file -->
<script src="script.js" defer></script>
</head>
<!-- Header-->
<!--Navigation Bar-->
<body>
<nav>
<div class="navbar">
<a href="index.html">Home</a>
<a href="volunteerabroad.html">Volunteer</a>
<div class="dropdown">
<button class="dropbtn">
Resources & Media
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="videos.html">Videos</a>
<a href="articles.html">Articles</a>
</div>
</div>
<a href="about.html">About</a>
</div>
</nav>
<h1><span class="highlight">VOLUNTEER</span></h1>
<h2>
Check out 3 locations to volunteer. We will have more coming in the future
so make sure to check back soon.
</h2>
<main id="boxes" align="center">
<div1 id="column1">
<h2>
<img
src="https://c2.staticflickr.com/8/7081/7350748636_448de6afaa_b.jpg 2x"
width="450px"
height="325px"
/>
</h2>
<h4>
Nepal
</h4>
<ul>
<li>4 Week Summer Program</li>
<li>Help build schools</li>
<li>Tutor/Teach the young women on basic subjects</li>
<li>Support exercise and sports through weekend activities</li>
<li>Living and Eating Accomadations provided</li>
</ul>
</div1>
<div1 id="column2">
<h2>
<img
src="https://i.dawn.com/medium/2019/06/5d14639969b5b.jpg"
width="450px"
height="325px"
/>
</h2>
<h4>Afghanistan</h4>
<ul>
<li>8 Week Summer Program</li>
<li>
Help build homes and areas of safety for women and young girls
</li>
<li>Provide emotional support to young girls and women</li>
<li>Learn valuable skills from the women of Afghanistan</li>
<li>
Take a trip to the Babur tomb or Band-e-Amir National Park for a
weekend
</li>
<li>Living and Eating Accommodations provided</li>
</ul>
</div1>
<div1 id="column3">
<h2>
<img
src="https://www.groundreport.com/wp-content/uploads/2014/05/Girls-after-Club.jpg"
width="450px"
height="325px"
/>
</h2>
<h4>Nigeria</h4>
<ul>
<li>12 Week Summer Program</li>
<li>Educate women and girls about the political system</li>
<li>Host clubs and camps teaching sports to women and girls</li>
<li>Build a tech lab with solar panels to power it</li>
<li>
Visit the Agodi Gardens or the Lekki Conservation Center for a
weekend
</li>
<li>Living and Eating Accommodations provided</li>
</ul>
</div1>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</main>
<p>
Please fill out the form below to get more information and pricing about
these amazing opportunities.
</p>
<div id="after_submit"></div>
<form
id="contact_form"
action="#"
method="POST"
enctype="multipart/form-data"
>
<div class="row">
<label class="required" for="name">Your name:</label><br />
<input
id="name"
class="input"
name="name"
type="text"
value=""
size="30"
/><br />
<span id="name_validation" class="error_message"></span>
</div>
<div class="row">
<label class="required" for="email">Your email:</label><br />
<input
id="email"
class="input"
name="email"
type="text"
value=""
size="30"
/><br />
<span id="email_validation" class="error_message"></span>
</div>
<div class="row">
<label class="required" for="message">Your message:</label><br />
<textarea
id="message"
class="input"
name="message"
rows="7"
cols="30"
></textarea
><br />
<span id="message_validation" class="error_message"></span>
</div>
<input id="submit_button" type="submit" value="Send email" />
</form>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
</body>
<footer>
<img
src="https://cdn.glitch.com/9358b7d4-1332-4e69-bee5-c76ab151e1b0%2Foutput-onlinepngtools%20(4).png?v=1594870922092"
style="width:12.5%"
/>
<p>
<span class="highlight">Made by Kiana Fong and Kayley Seow</span><br />
</p>
</footer>
</html>