Future of the Web

Student Work

Final Project

Day 8 (Thursday)

Day 7 (Wednesday)

    /1352432/
    /ftp/
    /public_html/
        index.html
        about.html
        images/
            dog.jpg
            logo.png
        css/
            style.css
            about.css
        js/
            general.js

Day 6 (Tuesday)

    #container {
        width: 700px;
        padding: .5em;
        margin: 0 auto;
        background: #000000;
        opacity: 0.9;
    }

Adding Javascript to your page.

Day 5 (Monday)

Day 4 (Friday)

Lesson: The Dos and Don't of Web Design

Day 3 (Thursday)

Day 2 (Wednesday)

Day 1 (Tuesday)

Resources

Browsers

Color Websites

Image Editing and Color Utilities

HTML

CSS

/* This is a comment in CSS. Weird, huh? */
body {
    color: #111111;
    background: #ffeeee;
    background-image: url('background.jpg'); /* This is tricky. */
    background-repeat: repeat; /* repeat, no-repeat, repeat-x, repeat-y */
    background-attachment: scroll; /* scroll, fixed */
    font-family: Times New Roman;
}
p { /* Styling */ }
h1.awesome { 
    font-face: Helvetica;
    font-size: 2em;
    font-style: italic;     /* Replaces em. */
    font-weight: bold;          /* Replaces strong and b. */
    text-decoration: underline; /* Replaces u. */
}
a {
    color: green;
}

Javascript

    // This is a Javascript comment.
    alert("Hello World!");