-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.15 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.15 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
<!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" />
<title>Flexbox Practice</title>
<link
rel="apple-touch-icon"
href="https://cdn.glitch.com/84080acb-56a9-4269-b3a7-f42a72aa1829%2Foutput-onlinepngtools.png?v=1594256098843"
/>
<link
rel="icon"
sizes="192x192"
href="https://cdn.glitch.com/84080acb-56a9-4269-b3a7-f42a72aa1829%2Foutput-onlinepngtools.png?v=1594256098843"
/>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- import the webpage's javascript file -->
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<div id="box1">
<p>BOX 1</p>
</div>
<div id="box2">
<p>BOX 2</p>
</div>
<div id="box3">
<p>BOX 3</p>
</div>
<div id="box4">
<p>BOX 4</p>
</div>
<div id="box5">
<p>BOX 5</p>
</div>
<div id="box6">
<p>BOX 6</p>
</div>
</div>
</body>
</html>