forked from Himanshusk1/GDF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVolunteer.html
More file actions
30 lines (27 loc) · 1.61 KB
/
Volunteer.html
File metadata and controls
30 lines (27 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gurukul Dream Foundation - Volunteer</title>
<meta name="description" content="Welcome to Gurukul Dream Foundation, where we empower the youth of tier 2/3 cities. Our goal is to provide tailored support and opportunities for young individuals to thrive. Through workshops, internships, and more, we aim to equip them with the skills they need to succeed. Join us as we shape a brighter future for every aspiring young mind.">
<meta name="keywords" content="Gurukul Dream Foundation, where we empower the youth of tier 2/3 cities. Our goal is to provide tailored support and opportunities for young individuals to thrive. Through workshops, internships, and more, we aim to equip them with the skills they need to succeed. Join us as we shape a brighter future for every aspiring young mind.">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<link href="./assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body class="overflow-x-hidden">
<div id="header"></div>
<!-- Your main content here -->
<div id="footer"></div>
<script>
fetch('_header.html').then(r => r.text()).then(html => {
document.getElementById('header').innerHTML = html;
});
fetch('_footer.html').then(r => r.text()).then(html => {
document.getElementById('footer').innerHTML = html;
});
</script>
<script src="./assets/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>