-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflex.html
More file actions
21 lines (21 loc) · 819 Bytes
/
flex.html
File metadata and controls
21 lines (21 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="<Cødєя="6"/>" />
<meta name="description" content="Entendendo o Flex-Box" />
<meta name="keywords" content="flexible box layout, flexbox, css3, alinhamento, layout" />
<meta name="apalication name" content="Site Hcode Lab" />
<link rel="stylesheet" href="assets/css/flex.css">
<title>Flex</title>
</head>
<body>
<div class="container">
<div class="item-1">A</div>
<div class="item-2">B</div>
<div class="item-3">C</div>
<div class="item-4">D</div>
<div class="item-5">E</div>
</div>
</body>
</html>