-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.35 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Equator Content Connections</title>
<link rel="stylesheet" href=".src/style.css">
</head>
<body>
<header>
<h1>🌐 Equator Content Connections</h1>
<p>Connecting creative minds and digital opportunities across the globe.</p>
</header>
<main>
<section>
<h2>Our Mission</h2>
<p>To bridge the equator of content creation, technology, and innovation by fostering global collaboration.</p>
</section>
<section>
<h2>Focus Areas</h2>
<ul>
<li>Content distribution</li>
<li>Global partnerships</li>
<li>Tech-powered creative projects</li>
<li>Community knowledge sharing</li>
</ul>
</section>
</main>
<footer>
<p>© 2025 stankick • Equator Content Connections</p>
</footer>
<script src=".src/script.js"></script>
<script>
fetch('location.json')
.then(response => response.json())
.then(data => {
const footer = document.querySelector('footer');
const locInfo = document.createElement('p');
locInfo.textContent = `📍 Location: ${data.latitude.toFixed(5)}, ${data.longitude.toFixed(5)} — ${data.description}`;
footer.appendChild(locInfo);
});
</script>
</body>
</html>