-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection-three.html
29 lines (26 loc) · 1.18 KB
/
section-three.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
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Examples</title>
<link rel="stylesheet" href="css/vendor/reset.css">
<link rel="stylesheet" href="css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,600;0,800;1,300;1,400;1,600&display=swap" rel="stylesheet">
</head>
<body>
<section id="three">
<h2>Image Gallery - Scale Image</h2>
<div class="wrap">
<div class="image" style="background-image:url('img/g1.jpg')"></div>
<div class="image" style="background-image:url('img/g2.jpg')"></div>
<div class="image" style="background-image:url('img/g3.jpg')"></div>
<div class="image" style="background-image:url('img/g4.jpg')"></div>
<div class="image" style="background-image:url('img/g5.jpg')"></div>
<div class="image" style="background-image:url('img/g6.jpg')"></div>
</div>
</section>
</body>
</html>