-
Notifications
You must be signed in to change notification settings - Fork 92
/
index.html
44 lines (36 loc) · 1.2 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
<!doctype html>
<html>
<head>
<!-- Declare the character set of your files -->
<meta charset="utf-8">
<!-- Give your page a title "Exercise ###" -->
<title>Exercise 2</title>
<!-- Set the author of the page to your name -->
<meta author="Michael Freeman">
<!-- Set device width to ensure proper renering on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Read in css file -->
<link href="css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<main>
<!-- Create a section element in your page in which you'll arrand elements -->
<section>
<div class="flexbox-container">
<div class="flex-column">
<div class="content">1</div>
</div>
<div class="flex-column">
<div class="content">2</div>
</div>
<div class="flex-column">
<div class="content">3</div>
</div>
<div class="flex-column">
<div class="content">4</div>
</div>
</div>
</section>
</main>
</body>
</html>