View on GitHub

reading-notes

Reading notes for Codesfellows Coding

Reading 04

HTML BOOK

<a href="http://www.imdb.com" target="_blank">
Internet Movie Database</a> (opens in new window) 
Links

Film Folk

Festival Diary

Here are some of the film festivals we will be attending this year.
Please contact us if you would like more information.

January

Sundance Film Festival
Park City, Utah, USA
20 - 30 January 2011

February

Tropfest
Sydney, Australia
20 February 2011

About Film Folk

Top of page


### Chapter 15: “Layout” (pp.358-404)
- block level vs. inline
- parents contain child elements
- z-index controls whats on top
- float allows other elements to "flow" around it in a determined direction

```css
body {
width: 750px;
font-family: Arial, Verdana, sans-serif;
color: #665544;}
h1 {
background-color: #efefef;
padding: 10px;}
p {
width: 450px;}
<body>
<h1>The Evolution of the Bicycle</h1>
<p>In 1817 Baron von Drais invented a walking
 machine that would help him get around the
 royal gardens faster...</p>
</body>
<h1>The Evolution of the Bicycle</h1>
<div class="column1of2">
<h3>The First Bicycle</h3>
<p>In 1817 Baron von Drais invented a walking
 machine that would help him get around the
 royal gardens faster: two same-size ...</p>
</div>
<div class="column2of2">
<h3>Bicycle Timeline</h3> ...
</div>
.column1of2 {
float: left;
width: 620px;
margin: 10px;}
.column2of2 {
float: left;
width: 300px;
margin: 10px;}

JS BOOK

Chapter 3 (first part): “Functions, Methods, and Objects” (pp.86-99 ONLY)