-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgalery.html
52 lines (46 loc) · 1.58 KB
/
galery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>web1</title>
<link rel="stylesheet" href="web1.css">
</head>
<body>
<input type="radio" name="photos" id="check1" checked>
<input type="radio" name="photos" id="check2">
<input type="radio" name="photos" id="check3">
<input type="radio" name="photos" id="check4">
<div class="container">
<h1>OUR GALLERY</h1>
<div class="top-content">
<h3>Photo Gallery</h3>
<label for="check1">All Photos</label>
<label for="check2">My</label>
<label for="check3">him</label>
<label for="check4">her</label>
</div>
<div class="photo-gallery">
<div class="pic place">
<img src="IMG-20220704-WA0004 - Copy.jpg">
</div>
<div class="pic My">
<img src="IMG-20220704-WA0004 - Copy.jpg">
</div>
<div class="pic him">
<img src="IMG-20220704-WA0004 - Copy.jpg">
</div>
<div class="pic place">
<img src="IMG-20220704-WA0004 - Copy.jpg">
</div>
<div class="pic My">
<img src="IMG-20220704-WA0004 - Copy.jpg">
</div>
<div class="pic him">
<img src="IMG-20220704-WA0004 - Copy.jpg">
</div>
</div>
</div>
</body>
</html>