forked from Himanshusk1/GDF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContacts.html
More file actions
40 lines (35 loc) · 1.83 KB
/
Contacts.html
File metadata and controls
40 lines (35 loc) · 1.83 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
<!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 - Contacts</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>
<!-- Page content goes here -->
<div id="footer"></div>
<script src="./assets/bootstrap/js/bootstrap.bundle.min.js"></script>
<script>
// Load header
fetch('_header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header').innerHTML = data;
})
.catch(error => console.error('Error loading header:', error));
// Load footer
fetch('_footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer').innerHTML = data;
})
.catch(error => console.error('Error loading footer:', error));
</script>
</body>
</html>