-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (77 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap" rel="stylesheet">
<link rel="icon" src="assets/ico/coffee-48x48.svg" type="image/x-icon">
<title>Home <3</title>
</head>
<body>
<div class="container">
<div class="dropdown">
<button class="dropbtn">General</button>
<div class="dropdown-content">
<a href="https://www.youtube.com">YouTube</a>
<hr>
<a href="https://instagram.com">Instagram</a>
<hr>
<a href="https://www.twitch.tv/">Twitch</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Social</button>
<div class="dropdown-content">
<a href="https://www.reddit.com">Reddit</a>
<hr>
<a href="https://libreddit.spike.codes/">Libreddit</a>
<hr>
<a href="https://www.twitter.com/home">Twitter</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Dev</button>
<div class="dropdown-content">
<a href="https://www.github.com">Github</a>
<hr>
<a href="https://www.crates.io">Crates</a>
<hr>
<a href="https://www.stackoverflow.com">StackOverflow</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Subreddits</button>
<div class="dropdown-content">
<a href="https://libreddit.spike.codes/r/Turkey">r/Turkey</a>
<hr>
<a href="https://libreddit.spike.codes/r/ateistturk">r/AteistTurk</a>
<hr>
<a href="https://libreddit.spike.codes/r/linuxmasterrace">r/linuxmasterrace</a>
<hr>
<a href="https://libreddit.spike.codes/r/unixporn">r/unixporn</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Other</button>
<div class="dropdown-content">
<hr>
<a href="https://mail.google.com/mail/u/0/#inbox">G-mail</a>
<hr>
<a href="https://translate.google.com/?hl=tr/&sl=en&tl=tr&op=translate">Translate</a>
<hr>
<a href="https://drive.google.com/drive/">Google Drive</a>
<hr>
<a href="https://www.sahibinden.com/">Sahibinden</a>
</div>
</div>
</div>
<h1 id="greeting">Great to see you again, Squatch.</h1>
<form id="search-bar" name="search-bar">
<input type="text" id="input" name="input" autocomplete="off" placeholder="Search with SearX" autofocus><br>
</form>
<p id="search-engine-indicator"></p>
<script async type="text/javascript" src="js/search.js"></script>
</body>
</html>