forked from h1tarxeth/Benvenuta-minimal_startpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (83 loc) · 2.84 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!doctype html>
<html lang="en">
<head>
<title>Home</title>
<link rel=" shortcut icon" type="image" href="style/favicon.ico" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="style/app.css" rel="stylesheet" />
</head>
<body class="main">
<div class="tm">
<span id="time"></span>
<span id="date"></span>
</div>
<div class="mm">
<span id="greeting"></span>
</div>
<hr />
<div class="button_bar">
<div class="button_div">
<button class="table_button" onclick="showTables(1)">Daily</button>
<button class="table_button" onclick="showTables(2)">Web</button>
<button class="table_button" onclick="showTables(3)">Art</button>
</div>
</div>
<div class="flx">
<div id="m1">
<table id="table1">
<tr>
<td><a href="https://studip.uni-goettingen.de/">Studip</a></td>
</tr>
</table>
<table id="table3" class="hidden">
<tr>
<td><a href="https://forum.melonland.net/">melonland forum</a></td>
<td><a href="https://discourse.32bit.cafe/">32bit cafe forum</a></td>
</tr>
<tr>
<td><a href="https://neocities.org/">Neocities</a></td>
</tr>
</table>
<table id="table5" class="hidden">
<tr>
<td><a href="https://www.pinterest.com/">Pinterest</a></td>
<td><a href="https://line-of-action.com/practice-tools/figure-drawing">Figure drawing</a></td>
</tr>
</table>
</div>
<div id="m2">
<table id="table2">
<tr>
<td><a href="https://twitter.com/home">X</a></td>
<td><a href="https://www.tumblr.com/">Tumblr</a></td>
</tr>
<tr>
<td><a href="https://www.reddit.com/">Reddit</a></td>
<td><a href="https://mastodon.social/home">Mastodon</a></td>
</tr>
</table>
<table id="table4" class="hidden">
<tr>
<td><a href="https://codepen.io/">Codepen</a></td>
<td><a href="https://replit.com/">Replit</a></td>
</tr>
<tr>
<td><a href="https://developer.mozilla.org/en-US/">Mdn</a></td>
<td><a href="https://glitch.com/">Glitch</a></td>
</tr>
</table>
<table id="table6" class="hidden">
<tr>
<td><a href="https://coolors.co/palettes/">Coolors</a></td>
<td><a href="https://app.dithermark.com/">Dithermark</a></td>
</tr>
</table>
</div>
</div>
</body>
<script src="src_js/time.js"></script>
<script src="src_js/greet.js"></script>
<script src="src_js/serch.js"></script>
<script src="src_js/table.js"></script>
</html>