-
Notifications
You must be signed in to change notification settings - Fork 0
/
class4-hw.html
36 lines (28 loc) · 1.21 KB
/
class4-hw.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Intro to HTML and CSS Materials and Slides, customized for Girl Develop It Boulder/Denver">
<link rel="stylesheet prefetch" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="css/index.css" />
<title>Girl Develop It | Intro to HTML and CSS Materials and Slides</title>
</head>
<body>
<div id="container">
<h1>Intro to HTML & CSS 4wk Series</h1>
<h2>Homework</h2>
<hr>
<h3>Week 1, Session 4 • <small>March 22, 2018</small></h3>
<ol>
<li>
<p><b>Draw a wireframe of how you want your site to be organized.</b> <a href="images/wireframe.JPG" target="_blank">See example</a>.
<p>Use this as a guide to organize your content into divs or sections.
<p>Try to have at least a header, a main section, and a sub section or side bar.
<li>
<p>Using floats and clears, arrange your content so the main content and the sidebar are next to each other on the page.
</ol>
</div>
</body>
</html>