-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 962 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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WallZilla</title>
<link rel="stylesheet" href="/assets/css/styles.css" />
</head>
<body>
<header>
<div class="logo">
<h1>WallZilla</h1>
</div>
<input
type="text"
id="searchInput"
placeholder="Search wallpapers..."
onkeyup="filterWallpapers()"
/>
</header>
<section class="wallpaper-gallery" id="wallpaperGallery">
<!-- Wallpaper cards-->
</section>
<!-- Modal -->
<div id="modal" class="modal">
<span class="close" onclick="closeModal()" aria-label="Close modal"
>×</span
>
<img class="modal-content" id="modalImg" alt="" />
</div>
<footer>
<p id="footer-text"></p>
</footer>
<script src="/assets/script/script.js"></script>
</body>
</html>