-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (70 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Women Empowerment</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="logo">EmpowerHer</div>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#mission">Our Mission</a></li>
<li><a href="#stories">Success Stories</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Empowering Women for a Better Tomorrow</h1>
<p>Together, we rise above and break barriers.</p>
<a href="#about" class="cta-button">Learn More</a>
</section>
<section id="about" class="content-section">
<h2>About Us</h2>
<p>We are dedicated to uplifting women by providing resources, support, and a platform to share their voices. Our goal is to create a world where every woman is empowered to reach her fullest potential.</p>
</section>
<section id="mission" class="content-section">
<h2>Our Mission</h2>
<div class="mission-cards">
<div class="card">
<h3>Education</h3>
<p>Providing access to education and skill development opportunities.</p>
</div>
<div class="card">
<h3>Support</h3>
<p>Offering mental health and career guidance for women in need.</p>
</div>
<div class="card">
<h3>Community</h3>
<p>Building strong communities where women support and uplift one another.</p>
</div>
</div>
</section>
<section id="stories" class="content-section">
<h2>Success Stories</h2>
<div class="stories">
<div class="story">
<h3>Jane's Journey</h3>
<p>From a small town to starting her own business, Jane’s journey is an inspiration to many.</p>
</div>
<div class="story">
<h3>Amara’s Voice</h3>
<p>Amara raised awareness in her community and became a leader advocating for women's rights.</p>
</div>
</div>
</section>
<section id="contact" class="content-section">
<h2>Contact Us</h2>
<p>Join us in our mission to empower women. Reach out for more information or collaboration opportunities.</p>
<a href="mailto:[email protected]" class="cta-button">Get in Touch</a>
</section>
<footer>
<p>© 2024 EmpowerHer. All rights reserved.</p>
</footer>
</body>
</html>