-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 971 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Search App</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 id="title">Image Search App</h1>
<div class="search-bar">
<input type="text" id="search-input" placeholder="Search for images...">
<button id="search-button">🔍 Search</button>
<button id="dark-mode-toggle" class="dark-mode-toggle">🌙</button>
</div>
<div id="image-gallery" class="gallery"></div>
<div id="loading" class="loading">Loading...</div>
<button id="load-more" class="load-more">Load More</button>
</div>
<script src="script.js"></script>
</body>
</html>