-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (114 loc) · 3.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="referrer" content="no-referrer" />
<meta property="og:site_name" content="Bing WallPaper" />
<meta
property="og:title"
content="Bing WallPaper - Bing WallPaper Collection"
/>
<meta
name="twitter:title"
content="Bing WallPaper - Bing WallPaper Collection"
/>
<meta name="description" content="Bing WallPaper Collection" />
<meta property="og:description" content="Bing WallPaper Collection" />
<meta name="twitter:description" content="Bing WallPaper Collection" />
<meta name="keywords" content="bing,wallpaper" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, user-scalable=yes"
/>
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<meta
content="max-snippet:-1, max-image-preview:large, max-video-preview:-1"
name="robots"
/>
<meta content="#282c34" name="theme-color" />
<meta content="telephone=no" name="format-detection" />
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<meta content="summary_large_image" name="twitter:card" />
<meta
name="google-site-verification"
content="nScZP2sBUKhxwKfvtKwCxQkPMCIOOvYNT35E5W2pDn8"
/>
<link rel="shortcut icon" href="assets/icons/favicon.ico" />
<link rel="apple-touch-icon" href="assets/icons/apple-touch-icon.png" />
<link
rel="icon"
type="image/png"
href="assets/icons/android-chrome-256x256.png"
/>
<title>Bing Wallpaper</title>
<link rel="stylesheet" href="assets/css/index.css" />
<script src="assets/js/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=GT-M3K38WD"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "GT-M3K38WD");
</script>
</head>
<body>
<div class="header">
<h1><a href="./">Bing Wallpaper</a></h1>
<div class="search-container">
<input type="text" id="searchInput" placeholder="Search Image..." />
<button id="searchButton">Search</button>
<button id="donwloadWallPaper">Download WallPaper</button>
</div>
</div>
<div class="pagination-container">
<button class="firstPage">First Page</button>
<button class="prevPage">Previous Page</button>
<span>
<div class="currentPage">1</div>
/
<div class="totalpage">1</div>
</span>
<button class="nextPage">Next Page</button>
<button class="lastPage">Last Page</button>
</div>
<div class="image-gallery"></div>
<div class="pagination-container bottom">
<button class="firstPage">First Page</button>
<button class="prevPage">Previous Page</button>
<span>
<div class="currentPage">1</div>
/
<div class="totalpage">1</div>
</span>
<button class="nextPage">Next Page</button>
<button class="lastPage">Last Page</button>
</div>
<button id="scrollTopBtn" class="scroll-top-btn">▲</button>
<footer>
<p>© 2025 Bing Wallpaper All rights reserved.</p>
</footer>
</body>
<div class="loader-wrapper">
<div class="loader"></div>
</div>
<div class="modal-overlay">
<div class="modal-dialog">
<div class="modal-header">
<button type="button" class="close-btn">
<span>×</span>
</button>
</div>
<div class="modal-content">
<span></span>
</div>
<div class="modal-footer"> </div>
</div>
</div>
</html>