-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (102 loc) · 4.56 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
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="./lib/quotes.js"></script>
<script defer type="text/javascript" src="./lib/script.js"></script>
<title>New Tab</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="./lib/style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body onload="start()" onclick="document.getElementById('input').focus()">
<div id="background"></div>
<div>
<div id="wel">
<div>
⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⢀⣠⠴⠙⠏⠩⠿⡲⣤⠀⠀⠀⠀⠀
⠀⠀⠀⠀⡞⢁⠀⠈⣀⡀⠀⡏⠈⣷⡀⠀⠀⠀⠀
⠀⠀⠀⠈⡇⢸⠀⢦⢿⣻⣿⣴⡀⠇⠃⠀⠀⠀⠀
⠀⠀⠀⠀⠈⠈⠀⠀⠈⡄⠉⠉⢻⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠘⡥⠀⢧⣴⠀⢟⣦⣴⡟⠰⠄⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⢸⣿⠀⠉⠴⣿⡇⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠘⣦⠀⡲⠮⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⡇⠀⠈⠘⠛⢀⢀⠀⠀⠀⠀⠀⠀
</div>
<span id="timer">0:0:0:0</span>
<span class="gray" id="ctime"></span>
<!--
<span class="gray">1. Delaying gratification<br>
2. Breaking the procrastination cycle<br>
3. Saying "no"<br>
4. Fixing your sleep<br>
5. Feeling the fear and doing it anyway</span>
-->
</div>
<div id="quoteheader">
<p class="gray" id="quote"></p>
<span id="infquote"><span id="author"></span></span>
</div>
<div id="container">
<div id="header">
<h3 style="display: inline;">
<span class="green"> > </span>
<span id="search" class="gray" onclick="changeQuery()">google</span>
</h3>
<form id="form" method="get" autocomplete="off" action="https://www.google.com/search">
<input id="input" type="text" autofocus="autofocus" name="q"\>
</form>
</div>
<div id="links">
<div class="linksbox" id="2">
<h3>
<span class="green"> > </span>
<span class="lightgray">Entertainment</span>
</h3>
<a class="gray" href="https://messanger.com">Messenger</a>
<a class="gray" href="https://www.youtube.com/">Youtube</a>
<a class="gray" href="https://www.instagram.com/">Instagram</a>
<a class="gray" href="https://discordapp.com/channels/@me">Discord</a>
<a class="gray" href="https://pinterest.com">Pinterest</a>
</div>
<div class="linksbox" id="2">
<h3>
<span class="green"> > </span>
<span class="lightgray">Study</span>
</h3>
<a class="gray" href="https://www.khanacademy.org/">Khan Academy</a>
<a class="gray" href="https://elearning.gtu.ge">Elearning</a>
<a class="gray" href="https://vici.gtu.ge">VICI</a>
</div>
<div class="linksbox" id="1">
<h3>
<span class="green"> > </span>
<span class="lightgray">Development</span>
</h3>
<a class="gray" href="https://github.com/">Github</a>
<a class="gray" href="https://itch.io/">Itch.io</a>
</div>
<div class="linksbox" id="3">
<h3>
<span class="green"> > </span>
<span class="lightgray">General</span>
</h3>
<a class="gray" href="file:///C:/Users/xenyc/">Home</a>
<a class="gray" href="http://ttc.com.ge/">Tbilis Transport</a>
<a class="gray" href="https://libgen.is/">Library</a>
<a class="gray" href="https://cobalt.tools">Cobalt</a>
</div>
<div class="linksbox" id="1">
<h3>
<span class="green"> > </span>
<span class="lightgray">Docs</span>
</h3>
<a class="gray" href="https://en.cppreference.com/w/">C++</a>
<a class="gray" href="https://docs.python.org/3/">Python</a>
<a class="gray" href="https://aur.archlinux.org/">AUR</a>
</div>
</div>
</div>
</div>
</body>
</html>