-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (28 loc) · 1.24 KB
/
index.html
File metadata and controls
34 lines (28 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JARVIS AI</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="hologram"></div>
<!-- Main JARVIS Panel -->
<div class="holo-card max-w-md w-full">
<h1 class="holo-title text-center">J.A.R.V.I.S</h1>
<p id="typingText" class="typing text-center mt-2">Awaiting your command, Sir...</p>
<input type="text" id="searchInput" placeholder="Enter command..." class="holo-input">
<div class="grid grid-cols-2 gap-4 mt-4">
<button onclick="search('YouTube')" class="holo-btn">YouTube</button>
<button onclick="search('Amazon')" class="holo-btn">Amazon</button>
<button onclick="search('Spotify')" class="holo-btn">Spotify</button>
<button onclick="search('Instagram')" class="holo-btn">Instagram</button>
</div>
<button onclick="search('WhatsApp')" class="holo-btn mt-4">WhatsApp</button>
</div>
<audio id="hoverSound" src="./source/hover-sound.mp3"></audio>
<script src="script.js" defer></script>
</body>
</html>