darkc0de commited on
Commit
e4dfa63
·
verified ·
1 Parent(s): 13dac01

Delete index.html

Browse files
Files changed (1) hide show
  1. index.html +0 -90
index.html DELETED
@@ -1,90 +0,0 @@
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>XORTRON OS</title>
7
- <link rel="stylesheet" href="style.css">
8
- </head>
9
- <body>
10
- <!-- CRT Scanline Effect Overlay -->
11
- <div class="crt"></div>
12
-
13
- <!-- Boot Sequence Screen -->
14
- <div id="boot-screen">
15
- <div id="boot-text"></div>
16
- </div>
17
-
18
- <!-- Desktop Icons -->
19
- <div class="desktop">
20
- <div class="icon" ondblclick="openWindow('chat-window')">
21
- <img src="https://cdn-icons-png.flaticon.com/512/1183/1183672.png" alt="Terminal">
22
- <span>XORTRON.exe</span>
23
- </div>
24
- <div class="icon" ondblclick="openWindow('snake-window'); initSnake();">
25
- <img src="https://cdn-icons-png.flaticon.com/512/834/834148.png" alt="Snake Game">
26
- <span>XOR-Snake</span>
27
- </div>
28
- <div class="icon" ondblclick="openWindow('notes-window')">
29
- <img src="https://cdn-icons-png.flaticon.com/512/1055/1055285.png" alt="Notepad">
30
- <span>Notes.txt</span>
31
- </div>
32
- </div>
33
-
34
- <!-- 1. Draggable Chat Window -->
35
- <div class="window" id="chat-window">
36
- <div class="window-header" id="chat-window-header">
37
- <span class="window-title">TERMINAL :: XORTRON CHATLINK</span>
38
- <div class="window-controls">
39
- <button onclick="closeWindow('chat-window')">X</button>
40
- </div>
41
- </div>
42
- <div class="window-content" style="padding: 0;">
43
- <!-- Your Chatbot iFrame goes here -->
44
- <div class="fake-chat" style="padding: 15px;">
45
- <p class="system-msg">Establishing secure connection to XORTRON servers...</p>
46
- <p class="system-msg">Connection encrypted. Proceed.</p>
47
- <p class="bot-msg">> Welcome back, Operative. Awaiting input.</p>
48
- <input type="text" class="hacker-input" placeholder="Type command here...">
49
- </div>
50
- </div>
51
- </div>
52
-
53
- <!-- 2. Draggable Snake Game Window -->
54
- <div class="window" id="snake-window" style="display: none; top: 150px; left: 200px; width: 420px; height: 480px;">
55
- <div class="window-header" id="snake-window-header">
56
- <span class="window-title">XOR-SNAKE.exe</span>
57
- <div class="window-controls">
58
- <button onclick="closeWindow('snake-window')">X</button>
59
- </div>
60
- </div>
61
- <div class="window-content" style="display: flex; justify-content: center; align-items: center; background: #000;">
62
- <canvas id="snake-canvas" width="400" height="400"></canvas>
63
- </div>
64
- </div>
65
-
66
- <!-- 3. Draggable Notepad Window -->
67
- <div class="window" id="notes-window" style="display: none; top: 200px; left: 250px; width: 500px; height: 400px;">
68
- <div class="window-header" id="notes-window-header">
69
- <span class="window-title">DECRYPTED_NOTES.txt</span>
70
- <div class="window-controls">
71
- <button onclick="closeWindow('notes-window')">X</button>
72
- </div>
73
- </div>
74
- <div class="window-content" style="padding: 0;">
75
- <textarea id="notepad-input" spellcheck="false" placeholder="Enter encrypted notes here..."></textarea>
76
- </div>
77
- </div>
78
-
79
- <!-- Taskbar -->
80
- <div class="taskbar">
81
- <button class="start-btn">XORTRON</button>
82
- <div class="open-apps" id="taskbar-apps">
83
- <!-- Dynamic taskbar items go here -->
84
- </div>
85
- <div class="clock" id="clock">00:00</div>
86
- </div>
87
-
88
- <script src="script.js"></script>
89
- </body>
90
- </html>