-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.13 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.13 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>Dayhta</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="desktop"></div>
<div class="taskbar">
<div class="start-button">
<img src="images/start.png" alt="Start" style="width: 16px; height: 16px; margin-right: 5px;">
Start
</div>
<div class="taskbar-programs"></div>
<div class="time"></div>
</div>
<div class="start-menu">
<div class="start-menu-header">Windows 98</div>
<div class="start-menu-items">
<div class="start-menu-item">
<img src="images/folder.png" alt="Programs" style="width: 24px; height: 24px; margin-right: 10px;">
Programs
</div>
<div class="start-menu-item">
<img src="images/notepad.png" alt="Documents" style="width: 24px; height: 24px; margin-right: 10px;">
Documents
</div>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>