-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprograms.html
More file actions
81 lines (76 loc) · 3.61 KB
/
Copy pathprograms.html
File metadata and controls
81 lines (76 loc) · 3.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Programs | ASC Foundation</title>
<link rel="stylesheet" href="/Aset/css/style.css">
<link rel="icon" href="/Aset/gambar/favicon.png" type="image/png">
<link rel="manifest" href="/manifest.webmanifest">
</head>
<body>
<header class="navbar">
<div class="container">
<a href="index.html" class="nav-brand">
<img src="/Aset/gambar/logo.png" alt="ASC Foundation Logo" class="logo-img">
<span class="brand-text">ASC FOUNDATION</span>
</a>
<nav>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="programs.html" class="active">Programs</a></li>
<li><a href="impact.html">Impact</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#donate" class="btn btn-gold">Donate</a></li>
</ul>
</nav>
</div>
</header>
<section class="section" style="padding-top: 9rem; text-align: center;">
<div class="container">
<h1 style="font-size: 3rem; margin-bottom: 1rem;">
Our <span class="gold-text">Global Initiatives</span> & Programs
</h1>
<p style="font-size: 1.2rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 2.5rem;">
Combining human compassion with advanced technology to solve complex social and educational challenges.
</p>
</div>
</section>
<section class="section">
<div class="container">
<div class="grid-3">
<div class="glass-card">
<div style="font-size: 2.5rem; margin-bottom: 1rem;">🎓</div>
<h3 class="gold-text" style="margin-bottom: 0.8rem;">Education for All</h3>
<p style="color: var(--text-muted);">Providing scholarships and modern learning hubs in remote regions.</p>
</div>
<div class="glass-card">
<div style="font-size: 2.5rem; margin-bottom: 1rem;">🏥</div>
<h3 class="gold-text" style="margin-bottom: 0.8rem;">Global Healthcare</h3>
<p style="color: var(--text-muted);">Deploying mobile health clinics and essential medical supplies.</p>
</div>
<div class="glass-card">
<div style="font-size: 2.5rem; margin-bottom: 1rem;">🚨</div>
<h3 class="gold-text" style="margin-bottom: 0.8rem;">Disaster Response</h3>
<p style="color: var(--text-muted);">Rapid dispatching of emergency aid and shelter to crisis regions.</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container footer-grid">
<div>
<a href="index.html" class="nav-brand">
<img src="/Aset/gambar/logo.png" alt="ASC Foundation Logo" class="logo-img">
<span class="brand-text">ASC FOUNDATION</span>
</a>
</div>
</div>
<div style="text-align: center; border-top: 1px solid var(--border-gold); padding-top: 1.5rem; margin-top: 2rem; color: var(--text-muted); font-size: 0.85rem;">
© 2026 ASC Foundation. All Rights Reserved.
</div>
</footer>
<script src="/worker.js"></script>
</body>
</html>