This repository was archived by the owner on Oct 25, 2024. It is now read-only.
forked from globant-ui/angular-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
63 lines (60 loc) · 1.94 KB
/
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
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
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gallery</title>
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/gallery.css">
</head>
<body>
<section class="container">
<h1>Laptops</h1>
<div class="wrapper">
<div class="box">
<img src="./images/asus.jpg" alt="Asus Laptop Image">
<p class="title">
Asus <br>
<span>www.asus.com</span>
</p>
</div>
<div class="box">
<img src="./images/dell.jpg" alt="Dell Laptop Image">
<p class="title">
Dell <br>
<span>www.dell.com</span>
</p>
</div>
<div class="box">
<img src="./images/hp.jpg" alt="HP Laptop Image">
<p class="title">
HP <br>
<span>www.hp.com</span>
</p>
</div>
<div class="box">
<img src="./images/macbook.jpg" alt="Macbook Image">
<p class="title">
Macbook <br>
<span>www.apple.com</span>
</p>
</div>
<div class="box">
<img src="./images/exo.jpg" alt="Exo Laptop Image">
<p class="title">
Exo <br>
<span>www.exo.com</span>
</p>
</div>
<div class="box">
<img src="./images/samsung.jpg" alt="Samsung Laptop Image">
<p class="title">
Samsung <br>
<span>www.samsung.com</span>
</p>
</div>
</div>
</section>
</body>
</html>