-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
50 lines (50 loc) · 2.01 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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TATBD's Ultimate Wallpaper</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="logo.png" type="image/png" />
</head>
<body>
<header>
<div id="header-content">
<div id="logo-container">
<a href="https://teenagetechbd.github.io/" id="logo-link">
<img src="logo-2.png" alt="Logo" id="logo" />
</a>
</div>
<div id="search-bar">
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search for wallpapers..." aria-label="Search for wallpapers..." />
<button id="clearButton" onclick="clearSearch()">✖</button>
</div>
<button id="searchButton" onclick="searchWallpapers()">Search</button>
<button id="slideshowButton" onclick="startSlideshow()">Slideshow</button>
</div>
</div>
</header>
<div id="gallery"></div>
<div id="pagination">
<button id="prevButton" disabled>Previous</button>
<span id="pageInfo"></span>
<button id="nextButton" disabled>Next</button>
</div>
<div id="fullscreen-container" style="display:none;">
<img id="fullscreen-image" src="" alt="" />
<button id="closeButton" onclick="closeFullscreen()">✖</button>
<a id="downloadBtn" href="" download="" class="downloadBtn">
<span class="downloadBtn-content">Download</span>
</a>
</div>
<div id="slideshow-container" style="display:none;">
<img id="slideshow-image" src="" alt="" />
<button id="closeSlideshowButton" onclick="stopSlideshow()">✖</button>
</div>
<footer>
<p>Copyright © 2023 - <span id="currentYear"></span> All rights reserved by various artists.</p>
</footer>
<script src="script.js"></script>
</body>
</html>