forked from Thinkful-Ed/css_layout_exercises_starter_files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (20 loc) · 808 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
<!DOCTYPE html>
<html>
<head>
<title>CSS Layout Exercises | Home</title>
<meta charset="utf-8" name="description" content="Layout exercise 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>
<h1>CSS layout exercises</h1>
<p><a href="display-exercise.html">Solution: Display Exercise</a></p>
<p><a href="position-exercise.html">Solution: Position Exercise</a></p>
<p><a href="float-exercise.html">Solution: Float Exercise</a></p>
</ul>
</body>
</html>