-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·83 lines (79 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>HOME</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script async type="text/javascript" src="script.js"></script>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline' 'sha256-HASH-OF-YOUR-SCRIPT-FILE'">
</head>
<body>
<div class="container" id="contFocus">
<div class="left-container">
<div class="time-holder">
<p id="time"></p>
</div>
</br>
<div class="gif" id="imgCont">
<!--
<img src="ico/ac3.webp" id="ac" height="300">
-->
<img src="ico/ac1.png" id="ac" height="300" />
</div>
<div class="modeContainer">
<button class="mode_class" id="modeButton">
<img src="ico/light.png" id="mode" height="24" />
</button>
</div>
</div>
<div class="right-container">
<div class="head">
<form id="search-bar" name="search-bar">
<div class="form-group">
<div id="terminal-content"></div>
<div class="terminalInput" id="terminalSearch"></div>
</div>
</form>
</div>
<div class="bookmarks">
<div class="category">
<div class="links" id="links_a">
<li>
<a href="https://www.youtube.com/feed/subscriptions">YouTube</a>
</li>
<li>
<a href="https://www.youtube.com/@brilliantclassics">Classical</a>
</li>
<li>
<a href="https://www.tradingview.com/chart/">TV</a>
</li>
</div>
</div>
<div class="category">
<div class="links" id="links_b">
<li>
<a href="https://github.com/">Github</a>
</li>
<li>
<a href="https://www.reddit.com/r/unixporn/">Reddit</a>
</li>
</div>
</div>
<div class="category">
<div class="links" id="links_c">
<li>
<a href="https://chat.openai.com/chat">ChatGTP</a>
</li>
<li>
<a href="https://animepahe.ru/">Animepahe</a>
</li>
<li>
<a href="https://typst.app/">Typst</a>
</li>
</div>
</div>
</div>
</div>
</div>
</body>
</html>