-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 881 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Layout Exercises | display property</title>
<meta charset="utf-8" name="description" content="Layout exercise on `display` property for Thinkful's front end web development course">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- reset -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.1.1/normalize.min.css">
<!-- styles -->
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<!-- your HTML here to implement the colored box design -->
<main class ='main' role ="main">
<div class = 'common div1'></div>
<div class = 'common div2'></div>
<div class = 'common div3'></div>
<div class = 'common div4'></div>
<div class = 'common div5'></div>
</main>
</body>
</html>