-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 974 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Gallery</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Image Gallery</h1>
<div class="input-section">
<input type="text" id="imageUrl" placeholder="Enter image URL">
<input type="text" id="imageName" placeholder="Enter image name">
<button id="addImageBtn">Add Image</button>
</div>
<div class="search-section">
<input type="text" id="searchInput" placeholder="Search images...">
</div>
<div id="gallery" class="gallery"></div>
</div>
<div id="paginationControls">
<button id="prevPage">Previous</button>
<span id="pageInfo"></span>
<button id="nextPage">Next</button>
</div>
<script src="script.js"></script>
</body>
</html>