-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 949 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>JS98 example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="os">
<div id="desktop"></div>
<div id="windows"></div>
<div id="taskbar">
<div id="tray">
<img
draggable="false"
style="float: left; margin-top: 1.5px; margin-left: 3px"
src="system-files/img/computertjes.png"
/>
<span id="time"></span>
</div>
<div id="dock"></div>
</div>
<div id="contextmenu"></div>
<canvas id="ctx"></canvas>
</div>
<script src="98.js"></script>
<script>
//your code here
var desktop = new JS98.Desktop();
var icon = new JS98.Icon();
icon.title = "Insert title here";
desktop.Add(icon);
</script>
</body>
</html>