Skip to content

Commit

Permalink
added example folder to exemplify layout in class
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenfazah committed Mar 28, 2016
1 parent 779727b commit c1eae40
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
23 changes: 23 additions & 0 deletions example/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Playing with Layouts</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="half">
<p>I'm a box!</p>
</div>
<div class="half">
<p>I'm a box!</p>
</div>
<div class="half">
<p>I'm a box!</p>
</div>
<div class="full">
<p>I'm also a box!</p>
<p>Just a little different from those others.</p>
</div>
</body>
</html>
17 changes: 17 additions & 0 deletions example/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
div{
height: 100px;
border: 1px solid #000;
margin-bottom: 10px;
text-align: center;
width: 30%;
}

p {
font-family: Helvetica;
}

.half {
}

.full{
}

0 comments on commit c1eae40

Please sign in to comment.