-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 819 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 819 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Flexbox</title>
<meta name="description" content="A course about Flexbox">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item01"><div>1</div></div>
<div class="flex-item02">2</div>
<div class="flex-item03">3</div>
<div class="flex-item04">4</div>
<div class="flex-item05">5</div>
<div class="flex-item06">6</div>
<div class="flex-item07">7</div>
<div class="flex-item08">8</div>
<div class="flex-item09">9</div>
<div class="flex-item10">10</div>
</div>
</body>
</html>