-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (24 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="icon" href="icon.png">
<script src="script.js"></script>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="preload" href="background.jpg" as="image">
</head>
<body>
<div class="box">
<h1>Finder</h1>
<input type="text" autocomplete="off" id="search" placeholder="Find something..." value="" onkeypress="handle(event)" />
<div class="btns">
<button class="btn" onclick="r1()"><h3><i class=""></i></h3></button>
<button class="btn" onclick="r2()"><h3><i class=""></i></h3></button>
<button class="btn" onclick="r3()"><h3><i class=""></i></h3></button>
<button class="btn" onclick="r4()"><h3><i class=""></i></h3></button>
<button class="btn" onclick="r5()"><h3><i class=""></i></h3></button>
</div>
</div>
</body>
</html>