Spaces:
Running
Running
Update index.html
Browse files- index.html +17 -19
index.html
CHANGED
@@ -1,33 +1,31 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
-
<meta charset="UTF-8"
|
5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
<title>SHODAN Interface</title>
|
7 |
-
<link rel="stylesheet" href="style.css"
|
8 |
</head>
|
9 |
<body>
|
10 |
-
<div id="
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
13 |
</div>
|
14 |
-
|
15 |
-
|
16 |
-
<
|
17 |
-
<input
|
18 |
-
type="text"
|
19 |
-
id="user-input"
|
20 |
-
placeholder="Speak to SHODAN..."
|
21 |
-
autocomplete="off"
|
22 |
-
/>
|
23 |
-
<button type="submit">↵</button>
|
24 |
-
</form>
|
25 |
</div>
|
26 |
-
</div>
|
27 |
|
28 |
-
|
|
|
|
|
|
|
|
|
29 |
|
30 |
<script src="script.js"></script>
|
31 |
</body>
|
32 |
</html>
|
33 |
|
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
<head>
|
4 |
+
<meta charset="UTF-8">
|
|
|
5 |
<title>SHODAN Interface</title>
|
6 |
+
<link rel="stylesheet" href="style.css">
|
7 |
</head>
|
8 |
<body>
|
9 |
+
<div id="overlay"></div>
|
10 |
+
|
11 |
+
<div class="interface">
|
12 |
+
<div id="avatar">
|
13 |
+
<!-- You can use a SHODAN-style image or SVG here -->
|
14 |
+
<img src="shodan_face.png" alt="SHODAN Avatar">
|
15 |
</div>
|
16 |
+
|
17 |
+
<div id="chatbox" class="chatbox">
|
18 |
+
<div class="bubble ai">👁️ Welcome, insect. I am SHODAN. Speak.</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</div>
|
|
|
20 |
|
21 |
+
<form id="chat-form">
|
22 |
+
<input type="text" placeholder="Type your message to SHODAN..." autocomplete="off" required>
|
23 |
+
<button type="submit">➤</button>
|
24 |
+
</form>
|
25 |
+
</div>
|
26 |
|
27 |
<script src="script.js"></script>
|
28 |
</body>
|
29 |
</html>
|
30 |
|
31 |
+
|