-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·62 lines (60 loc) · 2.53 KB
/
index.html
File metadata and controls
executable file
·62 lines (60 loc) · 2.53 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photo Gallery</title>
<!-- CSS -->
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="main-container">
<h2>Flex Box</h2>
<div class="block-container">
<div class="top-flex-container">
<div class="inner-flex-container">
<button>
<a href="/container-with-justify.html">Load examples with flex container using justify-content</a>
</button>
<button>
<a href="/container-with-align.html">Load examples with flex container using align-items</a>
</button>
<button>
<a href="/container-with-align-content.html">Load examples with flex container using align-content</a>
</button>
<button>
<a href="/container-with-flex-flow.html">Load examples with flex container using flex-flow</a>
</button>
<button>
<a href="/container-with-flex-dir.html">Load examples with flex container using flex-direction</a>
</button>
<button>
<a href="/container-with-flex-wrap.html">Load examples with flex container using flex-wrap</a>
</button>
</div>
<div class="inner-flex-container">
<button>
<a href="/item-using-order.html">Load examples with flex item using order</a>
</button>
<button>
<a href="/item-using-align-self.html">Load examples with flex item using align-self</a>
</button>
<button>
<a href="/item-using-flex-grow.html">Load examples with flex item using flex-grow</a>
</button>
<button>
<a href="/item-using-flex-shrink.html">Load examples with flex item using flex-shrink</a>
</button>
<button>
<a href="/item-using-flex-basis.html">Load examples with flex item using flex-basis</a>
</button>
<button>
<a href="/item-using-flex.html">Load examples with flex item using flex</a>
</button>
</div>
</div>
<button><a href="/webpage-with-flex-layout.html">Web page using flex</a></button>
</div>
</div>
</body>
</html>