-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
782 lines (713 loc) · 26.8 KB
/
index.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8" />
<title>Women4Women</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Fonts -->
<link
href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,700"
rel="stylesheet"
type="text/css"
/>
<link
href="http://fonts.googleapis.com/css?family=Dosis:400,700"
rel="stylesheet"
type="text/css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Dosis&display=swap"
rel="stylesheet"
/>
<!-- Bootsrap -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<!-- Font awesome -->
<link rel="stylesheet" href="assets/css/font-awesome.min.css" />
<!-- Owl carousel -->
<link rel="stylesheet" href="assets/css/owl.carousel.css" />
<!-- Template main Css -->
<link rel="stylesheet" href="assets/css/style.css" />
<!-- Favicon -->
<link
rel="shortcut icon"
href="assets/images/icons/Women4women-logo.jpg"
type="image/x-icon"
/>
<!-- Modernizr -->
<script src="assets/js/modernizr-2.6.2.min.js"></script>
</head>
<body>
<header class="main-header">
<nav class="navbar navbar-static-top">
<div class="navbar-main">
<div class="container">
<div class="navbar-header">
<button
type="button"
class="navbar-toggle collapsed"
data-toggle="collapse"
data-target="#navbar"
aria-expanded="false"
aria-controls="navbar"
>
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"
><img
src="assets/images/Women4women_logo.jpg"
alt=""
class="logo"
/></a>
</div>
<div id="navbar" class="navbar-collapse collapse pull-right">
<ul class="nav navbar-nav">
<li><a class="is-active" href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li class="has-child"><a href="causes.html">CAUSES</a></li>
<li><a href="gallery.html">GALLERY</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<!-- /#navbar -->
</div>
<!-- /.container -->
</div>
<!-- /.navbar-main -->
</nav>
</header>
<!-- /. main-header -->
<!-- Carousel
================================================== -->
<div
id="homeCarousel"
class="carousel slide carousel-home"
data-ride="carousel"
>
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#homeCarousel" data-slide-to="0" class="active"></li>
<li data-target="#homeCarousel" data-slide-to="1"></li>
<li data-target="#homeCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img
src="assets/images/slider/girls4_edit.jpg"
alt=""
class="slider-img"
/>
<div class="container">
<div class="carousel-caption">
<h2 class="carousel-title bounceInDown animated slow">
Securing an equitable and just future for all females.
</h2>
<h4 class="carousel-subtitle bounceInUp animated slow">
Do not let them down
</h4>
<a
href="#"
class="btn btn-lg btn-secondary hidden-xs bounceInUp animated slow"
data-toggle="modal"
data-target="#donateModal"
>DONATE NOW</a
>
</div>
<!-- /.carousel-caption -->
</div>
</div>
<!-- /.item -->
<div class="item">
<img
src="assets/images/slider/girls1-edit.png"
alt=""
class="slider-img"
/>
<div class="container">
<div class="carousel-caption">
<h2 class="carousel-title bounceInDown animated slow">
Promoting gender equality within the community, schools,
country, and across many borders.
</h2>
<h4 class="carousel-subtitle bounceInUp animated slow">
Let's take action NOW !
</h4>
<a
href="#"
class="btn btn-lg btn-secondary hidden-xs bounceInUp animated"
data-toggle="modal"
data-target="#donateModal"
>DONATE NOW</a
>
</div>
<!-- /.carousel-caption -->
</div>
</div>
<!-- /.item -->
<div class="item">
<img
src="assets/images/slider/african-woman.jpg"
alt=""
class="slider-img"
/>
<div class="container">
<div class="carousel-caption">
<h2 class="carousel-title bounceInDown animated slow">
Supporting and encouraging women to achieve their full potential
</h2>
<h4 class="carousel-subtitle bounceInUp animated slow">
You can make the diffrence !
</h4>
<a
href="#"
class="btn btn-lg btn-secondary hidden-xs bounceInUp animated slow"
data-toggle="modal"
data-target="#donateModal"
>DONATE NOW</a
>
</div>
<!-- /.carousel-caption -->
</div>
</div>
<!-- /.item -->
</div>
<a
class="left carousel-control"
href="#homeCarousel"
role="button"
data-slide="prev"
>
<span class="fa fa-angle-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a
class="right carousel-control"
href="#homeCarousel"
role="button"
data-slide="next"
>
<span class="fa fa-angle-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- /.carousel -->
<div class="section-home about-us fadeIn animated">
<div class="container home-abt">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="about-us-col">
<div class="col-icon-wrapper">
<img src="assets/images/icons/our-mission-icon.png" alt="" />
</div>
<h3 class="col-title">our mission</h3>
<div class="col-details">
<p>
We aim to eliminate biases and other inhumane activities which
females face on a daily. Through our actions, we do not only
aim for equality, but we also create awareness for the greater
public.
</p>
</div>
<a href="#" class="btn btn-primary"> Read more </a>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="about-us-col">
<div class="col-icon-wrapper">
<img src="assets/images/icons/make-donation-icon.png" alt="" />
</div>
<h3 class="col-title">Make donations</h3>
<div class="col-details">
<p>
No amount is considered too small to make a difference.
Whether in cash or kind, your actions will wipe the tears from
the women's eyes and put radiant smiles on their faces. Take
action today!
</p>
</div>
<a href="#" class="btn btn-primary"> Read more </a>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="about-us-col">
<div class="col-icon-wrapper">
<img src="assets/images/icons/help-icon.png" alt="" />
</div>
<h3 class="col-title">Help & support</h3>
<div class="col-details">
<p>
Despite its reputation as a psychological being, we believe
change starts somewhere, and it can start with you. Create a
better world for future generations by becoming an active
women's advocate today!
</p>
</div>
<a href="#" class="btn btn-primary"> Read more </a>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="about-us-col">
<div class="col-icon-wrapper">
<img src="assets/images/icons/programs-icon.png" alt="" />
</div>
<h3 class="col-title">our programs</h3>
<div class="col-details">
<p>
We offer MOOC Courses, food and clothing drives, voluntary
services, counselling and family planning sessions, skill
acquisition programs, school donation drives, and community
support systems.
</p>
</div>
<a href="#" class="btn btn-primary"> Read more </a>
</div>
</div>
</div>
</div>
</div>
<!-- /.about-us -->
<div class="w4w-achieve">
<h3>Our Areas of Impact</h3>
<div class="w4w-aims">
<div class="aim1">
<div class="w4w-goal">
<img src="assets/images/icons/Gender inequality.jpg" alt="" />
<div>
<h4>Gender inequality</h4>
<p>
The rate of constant intentional abuse against females is a
widespread form of human rights offense worldwide. Globally,
around 7% of women have been sexually abused by someone other
than an intimate partner. Another concern is that many of the
sex abuse cases are unreported and so data are sub optimal in
many countries related to sexual violence.
</p>
<a href="causes.html">See more</a>
</div>
</div>
<div class="w4w-goal">
<img src="assets/images/icons/Sanitary towel poverty.jpg" alt="" />
<div>
<h4>Sanitary towel poverty</h4>
<p>
Sanitary towel poverty, also known as Period poverty, affects
women, girls and people who menstruate all over the world.
Access to menstrual products, safe, hygienic spaces in which to
use them, and the right to manage menstruation without shame or
stigma, is essential for anyone who menstruates. Women for Women
have come together to create awareness on this crucial matter.
</p>
<a href="causes.html">See more</a>
</div>
</div>
</div>
<div class="aim1">
<div class="w4w-goal">
<img src="assets/images/icons/Gender violence.jpg" alt="" />
<div>
<h4>Gender-based violence</h4>
<p>
Gender-based violence is one of the most prevalent human rights
violations in the world. It knows no social, economic or
national boundaries. Worldwide, an estimated one in three women
will experience physical or sexual abuse in her lifetime.
Gender-based violence undermines the health, dignity, security
and autonomy of its victims, yet it remains shrouded in a
culture of silence.
</p>
<a href="causes.html">See more</a>
</div>
</div>
<div class="w4w-goal">
<img src="assets/images/icons/Educational dep..jpg" alt="" />
<div>
<h4>Educational deprivation</h4>
<p>
Denial of the right to education, or inaccessibility of
educational facility has deep rooted personal and social
consequences. For the person, the female, it implies that a
number of doorways to social and economic empowerment will be
blocked. The health status of educated women is better than that
of the uneducated;educated women adopt more and better disease
prevention strategies.
</p>
<a href="causes.html">See more</a>
</div>
</div>
</div>
<div class="aim1">
<div class="w4w-goal">
<img src="assets/images/icons/Child marriage.jpg" alt="" />
<div>
<h4>Early child marriage</h4>
<p>
Early marriage (child marriage) is a serious issue in many
African countries. It is a marriage or union before the age of
18, and often involves girls who are much younger. The practice
is rooted in cultural and economic factors, such as poverty and
the belief that early marriage will protect girls from
premarital sex and pregnancy.
</p>
<a href="causes.html">See more</a>
</div>
</div>
<div class="w4w-goal">
<img src="assets/images/icons/FGM.jpg" alt="" />
<div>
<h4>Female genital mutilation</h4>
<p>
Female genital mutilation (FGM) refers to "all procedures
involving partial or total removal of the female external
genitalia or other injury to to the female genital organs for
non-medical reasons" FGM is a violation of girls' and women's
human rights. At least 200 million girls and women have been cut
in 31 countries with representative data on prevalence
</p>
<a href="causes.html">See more</a>
</div>
</div>
</div>
</div>
</div>
<div class="section-home home-reasons">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="reasons-col animate-onscroll fadeIn">
<img
src="assets/images/reasons/African-lady3.jpeg"
alt=""
class="reasons-img"
/>
<div class="reasons-titles">
<h3 class="reasons-title">Women are the country's fate,</h3>
<h5 class="reason-subtitle">let them be a great!</h5>
</div>
<div class="on-hover hidden-xs">
<p>
Our world is made up of many incredible women.<br />So many
amazing changes currently in our world are being made by women
who recognize their importance, and are impacting lives in
great ways. <br />Today, I want to remind all of us of how
mentally strong we are!
</p>
<p>
Being a mentally strong woman is not about our looks on any
given day. It is not about being popular, and it is not about
earning the most money. It is about our character; being our
own selves while setting excellent examples for others.
</p>
<p>
As far back as time immemorial, there has always been
discrimination and differentiation in the name of gender.
<br />As individuals who are able to channel their
individuality and humanity while staying at the centre of
their being, we, as women, do not deserve discrimination and
criticism. Instead, we deserve much more recognition, support
and room for success and self-expression.
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="reasons-col animate-onscroll fadeIn">
<img
src="assets/images/reasons/Market-woman.jpeg"
alt=""
class="reasons-img"
/>
<div class="reasons-titles">
<h3 class="reasons-title">
Women are power and spirit of the nation.
</h3>
<h5 class="reason-subtitle">Do not exploit them!</h5>
</div>
<div class="on-hover hidden-xs">
<p>
Marks detailing their arms, sacrs littering their hearts, and
shrivelled, hunched-over gaits depict what haunts them.
<br />
They meet it everywhere they turn, whether it is in a room, a
country, or a continent.
<br />The emotions are the same, regardless of age, class,
ethnicity, religious affiliation, status, or even what they
wear; feeling broken and hurt, with silent, painfully hot
tears rolling down their saddened faces.
</p>
<p>
Being confronted daily by the infringement of their human
rights, facing abuse and unfair treatment, being denied
opportunities to learn, work, earn or even lead, and being
subjected to living in abject poverty takes getting used to.
<br />However, what makes their situation even more painful
with each passing day, is being maltreated by their companions
on this earth; the male gender.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.home-reasons -->
<div class="section-home our-sponsors animate-onscroll fadeIn">
<div class="container">
<h2 class="title-style-1">
Our Sponsors <span class="title-under"></span>
</h2>
<ul class="owl-carousel list-unstyled list-sponsors">
<li><img src="assets/images/sponsors/bus.png" alt="" /></li>
<li><img src="assets/images/sponsors/wikimedia.png" alt="" /></li>
<li><img src="assets/images/sponsors/one-world.png" alt="" /></li>
<li><img src="assets/images/sponsors/wikiversity.png" alt="" /></li>
<li>
<img src="assets/images/sponsors/united-nations.png" alt="" />
</li>
<li>
<img src="assets/images/sponsors/sponsor-unilever.jpg" alt="" />
</li>
<li><img src="assets/images/sponsors/sponsor-taous.jpg" alt="" /></li>
<li><img src="assets/images/sponsors/one-world.png" alt="" /></li>
<li><img src="assets/images/sponsors/wikiversity.png" alt="" /></li>
<li>
<img src="assets/images/sponsors/united-nations.png" alt="" />
</li>
</ul>
</div>
</div>
<!-- /.our-sponsors -->
<footer class="main-footer">
<section class="our-footer">
<table>
<tr>
<td><a href="contact.html">Questions? Contact us.</a></td>
</tr>
<tr>
<td><a href="#">FAQ</a></td>
<td><a href="#">Help Center</a></td>
<td><a href="#">Account</a></td>
<td><a href="#">Code of conduct</a></td>
</tr>
<tr>
<td><a href="#">Investor relations</a></td>
<td><a href="#">Jobs</a></td>
<td><a href="#">Mentoring</a></td>
<td><a href="#">Empower women</a></td>
</tr>
<tr>
<td><a href="#">Privacy</a></td>
<td><a href="#">Cookie Preferences</a></td>
<td><a href="#">Corporate Information</a></td>
<td><a href="#">Contact Us</a></td>
</tr>
<tr>
<td><a href="#">Donate</a></td>
<td><a href="#">Legal Notices</a></td>
<td><a href="#">Collaborate</a></td>
</tr>
<tr>
<td><a href="#">Women4Women</a></td>
</tr>
<tr>
<td colspan="2">
<ul class="list-unstyled list-inline header-contact">
<li>
<i class="fa fa-phone"></i> <a href="tel:">0904 329 8729</a>
</li>
<li>
<i class="fa fa-envelope"></i>
<a href="mailto:[email protected]"
>
</li>
</ul>
</td>
<td colspan="2" style="text-align: right">
<ul class="list-unstyled list-inline header-social">
<li>
<a href="#" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a href="#" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a href="#" target="_blank"> <i class="fa fa-google"></i> </a>
</li>
<li>
<a href="#" target="_blank">
<i class="fa fa-youtube"></i>
</a>
</li>
<li>
<a href="#" target="_blank">
<i class="fa fa fa-pinterest-p"></i>
</a>
</li>
</ul>
</td>
</tr>
</table>
</section>
<div class="footer-bottom">
<div class="container text-center">
Women4Women @ copyrights 2023 - by
<a href="http://www.ouarmedia.com" target="_blank">Codeblazers</a>
</div>
</div>
</footer>
<!-- main-footer -->
<!-- Donate Modal -->
<div
class="modal fade"
id="donateModal"
tabindex="-1"
role="dialog"
aria-labelledby="donateModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button
type="button"
class="close"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="donateModalLabel">DONATE NOW</h4>
</div>
<div class="modal-body">
<form class="form-donation">
<h3 class="title-style-1 text-center">
Thank you for your donation <span class="title-under"></span>
</h3>
<div class="row">
<div class="form-group col-md-12">
<input
type="text"
class="form-control"
id="amount"
placeholder="AMOUNT(€)"
/>
</div>
</div>
<div class="row">
<div class="form-group col-md-6">
<input
type="text"
class="form-control"
name="firstName"
placeholder="First name*"
/>
</div>
<div class="form-group col-md-6">
<input
type="text"
class="form-control"
name="lastName"
placeholder="Last name*"
/>
</div>
</div>
<div class="row">
<div class="form-group col-md-6">
<input
type="text"
class="form-control"
name="email"
placeholder="Email*"
/>
</div>
<div class="form-group col-md-6">
<input
type="text"
class="form-control"
name="phone"
placeholder="Phone"
/>
</div>
</div>
<div class="row">
<div class="form-group col-md-12">
<input
type="text"
class="form-control"
name="address"
placeholder="Address"
/>
</div>
</div>
<div class="row">
<div class="form-group col-md-12">
<textarea
cols="30"
rows="4"
class="form-control"
name="note"
placeholder="Additional note"
></textarea>
</div>
</div>
<div class="row">
<div class="form-group col-md-12">
<button
type="submit"
class="btn btn-primary pull-right"
name="donateNow"
>
DONATE NOW
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- /.modal -->
<!-- Scripts
================================================== -->
<!-- jQuery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
window.jQuery ||
document.write(
'<script src="assets/js/jquery-1.11.1.min.js"><\/script>'
);
</script>
<!-- Bootsrap javascript file -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- owl carouseljavascript file -->
<script src="assets/js/owl.carousel.min.js"></script>
<!-- Template main javascript -->
<script src="assets/js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function (b, o, i, l, e, r) {
b.GoogleAnalyticsObject = l;
b[l] ||
(b[l] = function () {
(b[l].q = b[l].q || []).push(arguments);
});
b[l].l = +new Date();
e = o.createElement(i);
r = o.getElementsByTagName(i)[0];
e.src = "//www.google-analytics.com/analytics.js";
r.parentNode.insertBefore(e, r);
})(window, document, "script", "ga");
ga("create", "UA-XXXXX-X");
ga("send", "pageview");
</script>
</body>
</html>