-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 3.07 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
<!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="destyle.min.css" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<title>Startpage</title>
</head>
<body>
<aside>
<form action="https://duckduckgo.com/" method="get" target="_top">
<input type="search" name="q" placeholder="Search DuckDuckGo" />
<input type="submit" value="Search" />
</form>
</aside>
<nav>
<ul>
<li><a target="_top" href="https://www.reddit.com">reddit</a></li>
<li>
<a target="_top" href="https://mail.proton.me/u/0/inbox"
>personal email</a
>
</li>
<li>
<a target="_top" href="https://mail.proton.me/u/1/inbox"
>work email</a
>
</li>
<li><a target="_top" href="https://www.youtube.com">youtube</a></li>
</ul>
<ul>
<li><a target="_top" href="https://web.whatsapp.com">whatsapp</a></li>
<li><a target="_top" href="https://web.telegram.org/">telegram</a></li>
<li>
<a target="_top" href="https://www.discord.com/channels/">discord</a>
</li>
<li><a target="_top" href="https://www.github.com/">github</a></li>
</ul>
<ul>
<li>
<a target="_top" href="https://www.muambator.com.br/">muambator</a>
</li>
<li><a target="_top" href="https://www.linkedin.com/">linkedin</a></li>
<li>
<a target="_top" href="https://aulas.descomplica.com.br/">college</a>
</li>
<li>
<a target="_top" href="https://www.duolingo.com/learn">duolingo</a>
</li>
</ul>
<ul>
<li><a target="_top" href="https://chat.openai.com/">chatgpt</a></li>
<li><a target="_top" href="https://github.com/EuCaue/gnome-shell-extension-quick-lofi">quick lofi</a></li>
<li>
<a target="_top" href="https://www.lazyvim.org/">lazyvim docs</a>
</li>
</ul>
<ul>
<li>
<a target="_top" href="https://www.monkeytype.com/">monkeytype</a>
</li>
<li><a target="_top" href="https://extensions.gnome.org/">ego</a></li>
<li><a target="_top" href="https://phanpy.social/">phanpy</a></li>
</ul>
<ul>
<li><a target="_top" href="https://mastodon.social/">mastodon</a></li>
<li>
<a target="_top" href="https://lemmy.ml/"
>lemmy</a
>
</li>
<li>
<a target="_top" href="https://duckduckgo.com/?q=DuckDuckGo&ia=chat"
>ddg ai</a
>
</li>
</ul>
</nav>
<dialog>
<h3>Shortcut Keys</h3>
<p><kbd>i</kbd> || <kbd>s</kbd> - Focus Search Input</p>
<p><kbd>Esc</kbd> - Unfocus Search Input</p>
<p><kbd>?</kbd> - Toggle this menu</p>
<button onclick="toggleHelpMenu()">Close</button>
</dialog>
<div>Press <kbd>?</kbd> to see all available shortcuts</div>
</body>
</html>