forked from Thinkful-Ed/css_layout_exercises_starter_files
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisplay-exercise.html
31 lines (28 loc) · 976 Bytes
/
display-exercise.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
<!DOCTYPE html>
<html>
<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="styles/main.css">
<!-- your styles will go in display-page.css -->
<link rel="stylesheet" type="text/css" href="styles/display-page.css">
</head>
<body>
<main>
<section class="top">
<div class="half green "></div>
<div class="half blue"></div>
</section>
<section class="bottom">
<div class="third gray"></div>
<div class="third black"></div>
<div class="third orange"></div>
</section>
</main>
</body>
</html>