-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiles.html
100 lines (94 loc) · 2.73 KB
/
tiles.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!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>Tiles||MiniProject</title>
<!-- fontawsome link -->
<link
rel="stylesheet"
href="./morethings/fontawesome-free-6.1.1-web/css/all.min.css"
/>
<!-- css -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section class="tiles">
<div class="tile-title">
<h1>tiles layout grid</h1>
<h3>change your screen size to see the different</h3>
<h3>refresh the page for different pictures</h3>
</div>
<div class="tiles-center">
<!-- tile #1 -->
<article class="tile-1">
<img
src="https://source.unsplash.com/800x600? blossom"
alt="tile-pic"
/>
</article>
<!-- end of tile #1 -->
<!-- tile #2 -->
<article class="tile-2">
<img
src="https://source.unsplash.com/800x600? candy"
alt="tile-pic"
/>
</article>
<!-- end of tile #2 -->
<!-- tile #3 -->
<article class="tile-3">
<img
src="https://source.unsplash.com/800x600? milkshake"
alt="tile-pic"
/>
</article>
<!-- end of tile #3 -->
<!-- tile #4 -->
<article class="tile-4">
<img
src="https://source.unsplash.com/800x600? repeat"
alt="tile-pic"
/>
</article>
<!-- end of tile #4 -->
<!-- tile #5-->
<article class="tile-5">
<img
src="https://source.unsplash.com/800x600? beautiful"
alt="beautiful"
/>
</article>
<!-- end of tile #5 -->
<!-- tile #6 -->
<article class="tile-6">
<img src="https://source.unsplash.com/800x600? cool" alt="tile-pic" />
</article>
<!-- end of tile #6 -->
<!-- tile #7 -->
<article class="tile-7">
<img src="https://source.unsplash.com/800x600?sky" alt="tile-pic" />
</article>
<!-- end of tile #7 -->
<!-- tile #8 -->
<article class="tile-8">
<img
src="https://source.unsplash.com/800x600? space"
alt="tile-pic"
/>
</article>
<!-- end of tile #8 -->
<!-- tile #9 -->
<article class="tile-9">
<img
src="https://source.unsplash.com/800x600? puppy"
alt="tile-pic"
/>
</article>
<!-- end of tile #9 -->
</div>
</section>
<a href="index.html" class="btn">back to home</a>
</body>
</html>