-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
79 lines (65 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/switch.css" />
<link rel="stylesheet" href="css/menu.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap" rel="stylesheet" />
<title>Ropoko | Inicio</title>
</head>
<body>
<div id="sideNav" class="sidenav">
<header>
<a href="javascript:void(0)" onclick="closeNav()"> × </a>
</header>
<main>
<div class="item">
<h3>Themes:</h3>
<!-- Switch theme -->
<div class="theme-switch-wrapper theme-switch">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
</div>
</div>
<hr />
<div class="item">
<h3>Search:</h3>
<!-- Search service -->
<select name="search" id="search_select" onchange="saveService()">
<option value="https://duckduckgo.com/?q=">DuckduckGo</option>
<option value="https://www.google.com/search?q=">Google</option>
<option value="https://www.startpage.com/do/search?q=SEARCH&segment=startpage.vivaldi">Startpage</option>
<option value="https://www.ecosia.org/search?tt=dccf112d&q=">Ecosia</option>
<option value="https://www.bing.com/search?FORM=INCOH2&PC=IFJ1&PTAG=ICO-c9d0fc87&q=">Bing</option>
</select>
</div>
</main>
<footer>
<p>Made with love by Ropoko ❤</p>
</footer>
</div>
<span onclick="openNav()">
≡
</span>
<div class="container">
<h2 id="message"></h2>
<div id="clock"></div>
<div id="search">
<input id="input_search" type="text" />
</div>
</div>
<script type="text/javascript" src="js/clock.js"></script>
<script type="text/javascript" src="js/search.js"></script>
<script type="text/javascript" src="js/toggleTheme.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/search-services.js"></script>
<script type="text/javascript" src="js/loader.js"></script>
</body>
</html>