forked from Thinkful-Ed/css_layout_exercises_starter_files
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathposition-exercise.html
37 lines (32 loc) · 1.56 KB
/
position-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
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>CSS Layout Exercises | position property</title>
<meta charset="utf-8" name="description" content="Layout exercise on `position` 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 go in position-page.css -->
<link rel="stylesheet" type="text/css" href="styles/position-page.css">
</head>
<body>
<!-- To finish the design, the HTML for the nav requires no additional elements, just the right CSS -->
<nav role="navigation">
<img src="https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.4.3_the_position_property/icon.png" alt="cat image" class="nav-image">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="display-exercise.html">display</a></li>
<li><a href="float-exercise.html">float</a></li>
</ul>
</nav>
<!-- <section class="test"> -->
<main role="main">
<!-- <div class="dottedbox"> </div> -->
<img src="https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.4.3_the_position_property/spacecat.png" alt="spacecat" class="spacecat" />
<img src="https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.4.3_the_position_property/spacedog.png" alt="spacedog" class="spacedog" />
</main>
</body>
</html>