-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 1.9 KB
/
Copy pathindex.html
File metadata and controls
61 lines (52 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Company Directory</title>
<!-- 🔹 Website description for SEO -->
<meta name="description" content="Explore the Company Directory — a simple, fast, and organized way to discover businesses, startups, and organizations by name or focus area.">
<!-- 🔹 Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="favicon.png">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="style.css">
<!-- 🔹 Google Ads -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8714452693053438"
crossorigin="anonymous"></script>
<!-- 🔹 Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9TR0K3B846"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9TR0K3B846');
</script>
</head>
<body>
<header>
<h1 id="page-title">Company Directory</h1>
<div class="controls">
<input type="text" id="searchBox" placeholder="🔍 Search by name or focus area...">
<button id="langToggle">🇺🇸 English</button>
</div>
</header>
<main>
<div id="loading" class="loading-container" style="display: none;">
<div class="spinner"></div>
<p class="loading-text">Loading...</p>
</div>
<div id="company-list" class="grid"></div>
</main>
<footer>
<p id="footer-text">Made with ❤️ by <a href="https://github.com/demanejar" target="_blank">Demanejar</a></p>
</footer>
<!-- Popup Modal -->
<div id="modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div id="modal-body"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>