-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (38 loc) · 1.21 KB
/
index.html
File metadata and controls
47 lines (38 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photos</title>
<link rel = "stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<div class="header_title">
<h1>Photos</h1>
</div>
<div class="filter">
<input class="filter_input" type="text" placeholder="Enter tag...">
<button disabled class="btn_clear_input">Clear filter</button>
</div>
</header>
<main class="photo_container">
</main>
<div class="btn">
<button disabled class="btn_prev">Prev</button>
<p class="number_page">1</p>
<button class="btn_next">Next</button>
</div>
<footer>
<p class="author_name">Ponomarev Alex</p>
</footer>
<!-- Modal window -->
<div class="modal hidden">
<span class="modal-close">×</span>
<img src="" alt="image" class="modal-img">
</div>
<script src="script.js"></script>
</div>
</body>
</html>