-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (103 loc) · 4.26 KB
/
index.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ghostbusters Internet Tools</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<script src="script.js" defer></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Ghostbusters Internet Tools</h1>
<p>Explore the advanced tools from the Ghostbusters universe.</p>
</header>
<div class="search-container">
<input type="text" id="search-input" placeholder="Search tools..." onkeyup="searchTools()">
<i class="fas fa-search search-icon"></i>
</div>
<!-- Tool Sections -->
<div class="tool-section">
<h2>1. Online P.K.E. Scanner</h2>
<p>An app that detects paranormal activity using IoT sensors.</p>
<button class="expand-button" data-tool-id="1">More</button>
</div>
<div class="tool-section">
<h2>2. Cloud Ghost Trap</h2>
<p>A cloud-based storage system for capturing ghosts remotely.</p>
<button class="expand-button" data-tool-id="2">More</button>
</div>
<div class="tool-section">
<h2>3. Specter Tracker Wristband</h2>
<p>A wearable device that alerts users of nearby ghost movement.</p>
<button class="expand-button" data-tool-id="3">More</button>
</div>
<div class="tool-section">
<h2>4. Ghost Recon Drones</h2>
<p>Autonomous drones equipped with thermal cameras to scan for ghosts.</p>
<button class="expand-button" data-tool-id="4">More</button>
</div>
<div class="tool-section">
<h2>5. Ghost Data Analyzer</h2>
<p>An AI-powered platform for analyzing ghost data and providing insights.</p>
<button class="expand-button" data-tool-id="5">More</button>
</div>
<div class="tool-section">
<h2>6. SpecterNet</h2>
<p>A social network for sharing ghost sightings and experiences.</p>
<button class="expand-button" data-tool-id="6">More</button>
</div>
<div class="tool-section">
<h2>7. Ghost Alert Network</h2>
<p>A global system for real-time ghost activity alerts.</p>
<button class="expand-button" data-tool-id="7">More</button>
</div>
<div class="tool-section">
<h2>8. Augmented Ghost Vision</h2>
<p>AR-powered glasses to visualize ghosts in real time.</p>
<button class="expand-button" data-tool-id="8">More</button>
</div>
<div class="tool-section">
<h2>9. Virtual Ghost Containment</h2>
<p>A virtual storage solution for ghost containment.</p>
<button class="expand-button" data-tool-id="9">More</button>
</div>
<div class="tool-section">
<h2>10. Digital Particle Thrower</h2>
<p>A web-connected weapon for tackling large-scale ghost threats.</p>
<button class="expand-button" data-tool-id="10">More</button>
</div>
<div class="tool-section">
<h2>11. Ghost Translator</h2>
<p>An AI tool for translating ghost languages into human speech.</p>
<button class="expand-button" data-tool-id="11">More</button>
</div>
<div class="tool-section">
<h2>12. Smart Ghost Command Center</h2>
<p>An advanced interface for managing missions and tools.</p>
<button class="expand-button" data-tool-id="12">More</button>
</div>
<div id="toolModal" class="modal">
<div class="modal-content">
<span class="close-modal">×</span>
<div class="modal-header">
<h2></h2>
</div>
<div class="modal-body">
<p class="modal-description"></p>
<div class="modal-details"></div>
</div>
</div>
</div>
<script>
function toggleDetails(id) {
const element = document.getElementById(id);
element.classList.toggle('hidden');
}
</script>
</body>
</html>