-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Win98 Markdown Note Taker</title>
<link rel="icon" href="./images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="https://unpkg.com/98.css" />
</head>
<body>
<div class="desktop">
<div class="welcome-window window">
<div class="title-bar">
<div class="title-bar-text">Welcome</div>
</div>
<div class="window-body">
<p>Welcome to my Markdown Note Taker App!</p>
<p>
Click the Markdown Note Taker Program.exe to start taking notes.
</p>
</div>
</div>
<div class="icon" onclick="openNoteTaker()">
<img src="./images/program_img.png" alt="Note Taker Icon" />
<div class="icon-label">Markdown Note Taker.exe</div>
</div>
<div class="start-menu" id="startMenu">
<div class="menu-content">
<ul>
<li onclick="openNoteTaker()">Markdown Note Taker</li>
<li onclick="openGitHub()">GitHub</li>
<li onclick="exitApplication()">Exit</li>
</ul>
</div>
</div>
<div class="taskbar">
<div class="start-button" onclick="toggleStartMenu()">Start</div>
<div class="clock" id="clock">12:00 PM</div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>