-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (56 loc) · 2.67 KB
/
index.html
File metadata and controls
62 lines (56 loc) · 2.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeHer - Home</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header>
<nav>
<a href="index.html" class="logo">
<img src="images/codher_logo.png" alt="CodeHer Logo" class="logo-img" />
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="career_coaching.html">AI Career Coaching</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>Welcome to CodeHer</h1>
<p></p>
<h2>About Us</h2>
<h4>Your Personalized Guide to Breaking into Tech – for Women, by Women!</h4>
<h4 style="text-align: center; margin: 0 auto; max-width: 800px;">
We are dedicated to breaking barriers and creating opportunities for women in technology. Through scholarships, coding bootcamps, career coaching, and networking events, we’ve helped countless women gain the skills, confidence, and connections needed to thrive in the industry. Our impact extends beyond education—we're building a supportive community that fosters mentorship, amplifies women's voices in tech, and drives meaningful change. Join us in shaping a more inclusive and diverse future in technology!
</h4>
<h2>Features</h2>
<div class="feature">
<h3>Find Resources</h3>
<p>Explore scholarships, bootcamps, conferences, and coding resources to support women in technology.</p>
</div>
<div class="feature">
<h3>AI Resume & Interview Prep</h3>
<p>Get your resume evaluated by an AI chatbot and practice with a behavioral assessment tester to improve your job readiness.</p>
</div>
<div>
<h2>Join Us in Making a Difference</h2>
<p>Be part of a community that’s driving positive change! Whether through mentorship, advocacy, or innovation, your contribution can help create opportunities, inspire growth, and shape a better future. Together, we can make an impact—join us today!</p>
<a href="resources.html" class="cta-button">Get Started</a>
</div>
</section>
</main>
<footer>
<p>© 2025 CodeHer. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>