-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Fetcher</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="background">
<h1><span>I</span><span>M</span><span>A</span><span>G</span><span>E</span> FETCHER</h1>
<form id="search-form">
<input type="text" placeholder="Search for images" id="search-input">
<button id="search-button" style="--clr:#fff"><span>Search</span><i></i></button>
</form>
</div>
<!-- <div class="toggle">
<i class="indicator"></i>
</div> -->
<div id="search-result" onclick="audio1.play()">
</div>
<div class="container">
<div class="btn">
<button id="show-more-button" class="btn">Show More</button>
</div>
</div>
<script src="main.js"></script>
<script type="text/javascript">
const audio1 = new Audio();
audio1.src = "./click.mp3";
</script>
</body>
</html>
<!-- onclick="audio1.play()" -->