-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pop-up image gallery</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="gallery">
<div class="img-container">
<img src="./Images-sm/cheese-tomato-sm.jpg" alt="Cheese and Olives" data-original="cheese-tomato-lg.jpg" />
</div>
<div class="img-container">
<img src="./Images-sm/noodles-sm.jpg" alt="Pasta noodles" data-original="noodles-lg.jpg" />
</div>
<div class="img-container">
<img src="./Images-sm/soup-sm.jpg" alt="Delicious Soup" data-original="soup-lg.jpg" />
</div>
<div class="img-container">
<img src="./Images-sm/vegetable-salad-sm.jpg" alt="Vegetable Salad"
data-original="vegetable-salad-lg.jpg" />
</div>
<div class="modal">
<img src="./Images-lg/cheese-tomato-lg.jpg" alt="Image of Cheese and Tomato" class="full-img" />
<p class="caption">
Images of Food Dishes
</p>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>