-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (49 loc) · 2.92 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="img/Auxiliatrium.png">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<script type="text/javascript" src="main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- https://github.com/SpectrixDev/Auxiliatrium By Spectrix-->
<title>Auxiliatrium</title>
</head>
<body onload=startTime()>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<div class="animate__animated animate__fadeIn">
<header class="header">
<img src="img/Auxiliatrium.png" class="logo" alt="logo" id="logolmao"/>
</header>
<div class="searchArea">
<input class="search" id="textbox" type="text" placeholder="Search or AI query..." onkeydown="if (event.keyCode == 13 || event.which == 13) { performSearch('duckduckgo'); }"/>
<button class="ai-button" onclick="performSearch('duckduckgoAI')"><i class="fas fa-robot"></i></button>
</div>
<div class="notselectable">
<br />
<div class="animate__animated animate__fadeInUp">
<button class="buttons" onclick="performSearch('youtube')">YouTube</button>
<button class="buttons" onclick="performSearch('github')">GitHub</button>
<button class="buttons" onclick="performSearch('gcal')">Gcal</button>
<button class="buttons" onclick="performSearch('gmail')">Gmail</button>
<button class="buttons" onclick="performSearch('gmaps')">Gmaps</button>
<button class="buttons" onclick="performSearch('twitter')">Twitter</button>
</div>
<br />
<div class="secondRowButtons">
<button class="buttons" onclick="performSearch('reddit')">Reddit</button>
<button class="buttons" onclick="performSearch('aoty')">AOTY</button>
<button class="buttons" onclick="performSearch('chatgpt')">ChatGPT</button>
<button class="buttons" onclick="performSearch('weather')">Weather</button>
<button class="buttons" onclick="performSearch('claude')">Claude</button>
</div>
</div>
<p class="animate__animated animate__fadeInUp animate__delay-1s animate__slower notselectable" id="greetingMsg"></p>
<p class="animate__animated animate__fadeInUp animate__delay-1s animate__slower notselectable" id="clock"></p>
<div class="animate__animated animate__fadeInUp animate__delay-2s animate__slow">
<button class="buttons" id="home" style="font-family: monospace; color: rgb(169, 169, 169)" onclick="window.location.href='https://spectrixdev.github.io/'">Home</button>
</div>
</div>
</body>
</html>