-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·53 lines (52 loc) · 1.46 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
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'"
/>
<link href="./styles.css" rel="stylesheet" />
<title>dashbox</title>
</head>
<body>
<div class="workarea">
<object draggable width="350" height="230"></object>
<object
draggable
type="text/html"
data="./components/WorldClock/WorldClock.html"
width="175"
height="175"
></object>
<!-- <object
type="text/html"
data="./components/calendar/calendar.html"
width="350"
height="230"
></object> -->
<!-- <object
type="text/html"
data="./components/MiniDictionary/index.html"
width="250"
height="230"
></object> -->
<!-- <object
type="text/html"
data="./components/sticky/sticky.html"
width="250"
height="230"
></object> -->
<article draggable="true">test</article>
</div>
<footer>
<button class="plus"><span>+</span></button>
<button class="minus"><span>–</span></button>
<button class="last">—</button>
</footer>
<!-- You can also require other files to run in this process -->
<!-- <script src="components/sticky/sticky.js"></script> -->
<script src="./renderer.js"></script>
</body>
</html>