-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 2.19 KB
/
index.html
File metadata and controls
69 lines (62 loc) · 2.19 KB
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
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NuciSearch</title>
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/16x.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/32x.png">
<link rel="icon" type="image/png" sizes="48x48" href="assets/favicon/48x.png">
<link rel="icon" type="image/png" sizes="64x64" href="assets/favicon/64x.png">
<link rel="stylesheet" href="styles/main.css">
<link
rel="search"
type="application/opensearchdescription+xml"
title="NuciSearch"
href="/opensearch.xml"/>
</head>
<body>
<main>
<img src="assets/logo.png" alt="NuciSearch logo" class="logo">
<p class="title">NuciSearch</p>
<form id="search-form">
<div class="tabs">
<label>
<input type="radio" name="search-type" value="auto" checked>
Auto
</label>
<label>
<input type="radio" name="search-type" value="text">
Text
</label>
<label>
<input type="radio" name="search-type" value="images">
Images
</label>
<label>
<input type="radio" name="search-type" value="torrents">
Torrents
</label>
<label>
<input type="radio" name="search-type" value="videos">
Videos
</label>
<label>
<input type="radio" name="search-type" value="maps">
Locations
</label>
</div>
<input
id="query"
class="search-box"
type="text"
placeholder="Search for something..."
autocomplete="off"
autofocus
/>
<button class="search-button" type="submit">Search</button>
</form>
</main>
<script src="scripts/main.js"></script>
</body>
</html>