-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Images Search Engine</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
</head>
<body>
<h1>Images Search Engine</h1>
<form id="search-form">
<input type="text" id="search-box" placeholder="Enter Anything Here..." />
<button>Search</button>
</form>
<div id="overlay" style="display: none">
<div id="wifi-loader">
<svg viewBox="0 0 86 86" class="circle-outer">
<circle r="40" cy="43" cx="43" class="back"></circle>
<circle r="40" cy="43" cx="43" class="front"></circle>
<circle r="40" cy="43" cx="43" class="new"></circle>
</svg>
<svg viewBox="0 0 60 60" class="circle-middle">
<circle r="27" cy="30" cx="30" class="back"></circle>
<circle r="27" cy="30" cx="30" class="front"></circle>
</svg>
<div data-text="Loading..." class="text"></div>
</div>
</div>
<div id="search-result"></div>
<button id="show-more-btn">Show More</button>
<script src="script.js"></script>
</body>
</html>