-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (67 loc) · 2.87 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
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
<!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">
<link rel="stylesheet" href="index-style.css">
<link rel="icon" href="./Grid-style/img4_index/atashi_no_icon_tSr_icon.ico">
<title>Grid Index</title>
</head>
<body>
<h1>GRID LAYOUTS</h1>
<div class="main">
<div class="images-grid">
<!-- division-1 -->
<div class="images-grid__image">
<a href="./Grid-style/grid_index.html"><img src="./Grid-style/img4_index/grid_index.png" alt="" /></a>
<div class="description"> index </div>
</div>
<!-- division-2 -->
<div class="images-grid__image">
<a href="./Grid-style/grid_pos.html"><img src="./Grid-style/img4_index/grid_pos.png" alt="" /></a>
<div class="description">positioning</div>
</div>
<!-- division-3 -->
<div class="images-grid__image">
<a href="./Grid-style/grid_template_areas.html"><img src="./Grid-style/img4_index/grid_template_areas.png" alt="" /></a>
<div class="description">template areas</div>
</div>
<!-- division-4 -->
<div class="images-grid__image">
<a href="./Grid-style/2grid_autofit.html"><img src="./Grid-style/img4_index/2grid_autofit.png" alt="" /></a>
<div class="description">auto-fit</div>
</div>
<!-- division-5 -->
<div class="images-grid__image">
<a href="./Grid-style/2image_grid.html"><img src="./Grid-style/img4_index/2_image_grid.png" alt="" /></a>
<div class="description">cool image grid</div>
</div>
<!-- division-6 -->
<div class="images-grid__image">
<a href="./Grid-style/3justify_align.html"><img src="./Grid-style/img4_index/3justify_align.png" alt="" /></a>
<div class="description">justify & align</div>
</div>
<!-- division-7 -->
<div class="images-grid__image">
<a href="./Grid-style/3named_lines.html"><img src="./Grid-style/img4_index/3named_lines.png" alt="" /></a>
<div class="description">named grid lines</div>
</div>
<!-- division-8 -->
<div class="images-grid__image">
<a href="./Grid-style/4auto_fill-fit.html"><img src="./Grid-style/img4_index/4auto_fill_fit.png" alt="" /></a>
<div class="description">auto-fill & auto-fit</div>
</div>
<!-- division-9 -->
<div class="images-grid__image">
<a href="./Grid-style/4flex_and_grid.html"><img src="./Grid-style/img4_index/4flex_and_grid.png" alt="" /></a>
<div class="description">flex & grid</div>
</div>
</div> <!-- end images-grid -->
<!-- <div class="code-source">
<div class="html-code"></div>
<div class="css-code"></div>
</div> -->
</div>
</body>
</html>