-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (64 loc) · 2.07 KB
/
Copy pathindex.html
File metadata and controls
83 lines (64 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>SheRise X</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="top-header">
<h2 class="logo">SheRise X</h2>
<p class="tagline">Structured Digital Empowerment for Women</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="career.html">Career</a>
<a href="resume1.html">Resume</a>
<a href="finance.html">Freelance</a>
<a href="health.html">Health</a>
</nav>
<section class="hero">
<div class="hero-left">
<h1>Empowering Women<br>Through Intelligent Guidance</h1>
<p>
Career. Health. Finance. Emotional Support — all structured in one smart platform built for women.
</p>
<a href="career.html">
<button class="primary-btn">Get Started</button>
</a>
</div>
<div class="hero-right">
<img src="https://cdn-icons-png.flaticon.com/512/6997/6997662.png" alt="Empowered Woman">
</div>
</section>
<section class="features">
<div class="feature-card">
<h3>🎓 Career Growth</h3>
<p>Scholarships, internships & job matching with AI-powered guidance.</p>
<a href="career.html" class="card-btn">Explore Career</a>
</div>
<div class="feature-card">
<h3>💰 Financial Planning</h3>
<p>Smart savings simulator & financial independence score.</p>
<a href="finance.html" class="card-btn">Explore Finance</a>
</div>
<div class="feature-card">
<h3>🩺 Health Awareness</h3>
<p>Early symptom guidance and structured wellness tracking.</p>
<a href="health.html" class="card-btn">Explore Health</a>
</div>
<div class="feature-card">
<h3>💬 Emotional Support</h3>
<p>Safe listening space with supportive and structured responses.</p>
<a href="support.html" class="card-btn">Explore Support</a>
</div>
</section>
<footer>
<div class="footer-content">
<p>© 2026 SheRise X | All Rights Reserved</p>
<p>Your safe and empowering space to grow.</p>
</div>
</footer>
</body>
</html>