forked from BwnnyRxbbit/ScratchFind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.44 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en" class="light">
<head>
<!-- Back end -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScratchFind</title>
<link rel="stylesheet" href="style.css">
<!-- Front end -->
<link rel="icon" type="image/x-icon" href="8-GXePTGNU889akaR (1).png">
</head>
<body>
<img src="8-GXePTGNU889akaR (1).png" alt="ScratchFind Logo">
<h1>ScratchFind</h1>
<div id="inputDrop">
<select name="type" id="drop" required>
<option value="" disabled selected hidden>What are you looking for?</option>
<option value="user">Username</option>
<option value="user">Username ID</option>
<option value="project">Project ID</option>
<option value="studio">Studio ID</option>
<option value="url">Enter a URL</option>
</select>
<input id="url" type="text" name="input" placeholder="Type what you want to find here">
</div>
<button onclick="getResult()" id="submit">Find!</button>
<h1 id="output">hi</h1>
<!-- Theme toggle -->
<label class="switch">
<input type="checkbox" onclick="toggleTheme()">
<span class="slider"></span>
</label>
<!-- Please don't move this to the top | Back end -->
<script src="script.js"></script>
</body>
</html>