-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.86 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
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title id="title"></title>
<link rel="stylesheet" href="./css/stylesheet.css" />
<meta charset="utf-8" />
<script type="text/javascript" src="config.js"></script>
</head>
<body id="background">
<div style="display: grid; place-items: center">
<div id="bglayer">
<div style="flex-basis: auto">
<div id="sideflexcontainer">
<div id="sideflexitem">
<div
id="time"
style="font-size: 7vmin; color: rgb(131, 131, 131)"
></div>
<div
id="date"
style="font-size: 4vmin; color: rgb(131, 131, 131)"
></div>
</div>
</div>
<div style="margin-top: 6vh"></div>
<div id="quotecontainer">
<div id="quotebox">
<div id="quote" style="font-style: italic"></div>
<div id="quoteauthor" style="text-align: end"></div>
</div>
</div>
<div id="todocontainer">
<div style="color: rgb(131, 131, 131); font-size: 32px">To do:</div>
<textarea type="text" id="todo"></textarea>
</div>
</div>
<div>
<div id="customsearch">
<div class="dropdown">
<button class="dropbtn"></button>
<div class="dropdown-content"></div>
</div>
<form id="searchForm" style="flex-grow: 1"></form>
</div>
<div style="margin-top: 40px"></div>
<div id="links"></div>
</div>
</div>
</div>
</body>
<script src="./js/getimage.js"></script>
<script src="./js/settext.js"></script>
<script src="./js/imagetabs.js"></script>
<script src="./js/customsearch.js"></script>
<script src="./js/todo.js"></script>
<script src="./js/configparse.js"></script>
</html>