-
Notifications
You must be signed in to change notification settings - Fork 1
/
homepage.html
executable file
·75 lines (67 loc) · 3.69 KB
/
homepage.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
<!DOCTYPE HTML>
<!--
Copyright (C) 2023-2024 TheRealOne78 <[email protected]>
This file is part of the 'TheRealOne78's Browser Homepage' project
'TheRealOne78's Browser Homepage' is free software: you can redistribute it
and/or modify it under the terms of the MIT License as published by the
Massachusetts Institute of Technology.
'TheRealOne78's Browser Homepage' is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MIT License for
more details.
You should have received a copy of the MIT License along with 'TheRealOne78's
Browser Homepage'. If not, see <https://mit-license.org/>.
-->
<html>
<head>
<meta charset="UTF-8">
<title>Yo Dayo~</title>
<link rel="icon" href="./resources/img/icons/favico.svg">
<link rel="stylesheet" href="./resources/css/main.css?version=1.1">
<style>
@font-face {
font-family: "VT323";
src: url('./resources/fonts/VT323-Regular.ttf');
}
</style>
</head>
<body>
<div class="no-script-notice"><noscript class="no-script-notice">Note: You must enable JavaScript to achieve full functionality</noscript></div>
<br><br>
<div class="container">
<div class="content-container">
<div class="item-text-container">
<div class="item-title">DuckDuckGo Search Engine™</div><!-- DuckDuckGo Search Engine -->
<form method="get" id="search" action="https://duckduckgo.com/">
<input type="hidden" name="k8" value="#444444">
<input type="hidden" name="k9" value="#D51920">
<input type="hidden" name="kt" value="h">
<input type="text" name="q" maxlength="255" placeholder=" Search…" style="background-color: #111111; color: #ffffff; width: 100%; border: 1px solid gray; height: 40px; font-family: VT323; font-size: 20px">
<input type="submit" value="DuckDuckGo Search" style="visibility: hidden;" >
</form>
<div class="item-title">Quick access:</div><!-- Quick access -->
<div>
* TheRealOne78: <a href="https://therealone78.ddns.net">therealone78.ddns.net</a><br>
* Youtube: <a href="https://youtube.com">youtube.com</a><br>
* Odysee: <a href="https://odysee.com/">odysee.com</a><br>
* GitHub: <a href="https://github.com">github.com</a> | <a href="https://gist.github.com">gist.github.com</a><br>
* ChatGPT: <a href="https://chat.openai.com">chat.openai.com</a><br>
* Gentoo Linux: <a href="https://www.gentoo.org">www.gentoo.org</a> | <a href="https://wiki.gentoo.org">wiki.gentoo.org</a><br>
* Arch Linux: <a href="https://archlinux.org/">archlinux.org</a> | <a href="https://wiki.archlinux.org/">wiki.archlinux.org</a><br>
</div>
<div class="item-title">Fun fact:</div><!-- Fun fact -->
<div id="fun-fact">
Did you know each insect is a host to ten bacterial species?
<p>There are around 2 billion species on Earth—with 6.8 million likely to be species of insects. And up to 10 types of bacteria lives inside of each of these insects!</p>
<!--https://www.rd.com/list/did-you-know-facts-most-people-dont-know/ - fair use -->
</div>
</div>
</div>
<div class="img-container">
<img id="img" src="./resources/img/loading.svg" class="itemImg" width="80%" height="auto">
<div class="item-title welcome-msg">Irasshaimase <b>Guest</b>!<span class="infinite-cursor"> </span></div>
</div>
</div>
<script src="./resources/script/script.js"></script>
</body>
</html>