-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzoom-gallery.html
25 lines (25 loc) · 924 Bytes
/
zoom-gallery.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ZOOM GALLERY</title>
<link rel="stylesheet" href="css/zoom-gallery.css">
</head>
<body>
<input type="radio" name="image-group" id="butterflies" checked>
<label for="butterflies">Butterflies</label>
<input type="radio" name="image-group" id="emma">
<label for="emma">Emma</label>
<input type="radio" name="image-group" id="landscape">
<label for="landscape">Landscape</label>
<div id="zoom-gallery">
<img src="images/blue-butterfly.jpg" alt="" class="butterflies">
<img src="images/emma-left.jpg" alt="" class="emma">
<img src="images/yacht.jpg" alt="" class="landscape">
<img src="images/emma-right.jpg" alt="" class="emma">
<img src="images/queenstown.jpg" alt="" class="landscape">
<img src="images/butterfly-on-yellow-flower.jpg" alt="" class="butterflies">
</div>
</body>
</html>