Skip to content

Media Arts 3/2/2017

Warm-Up:

We will be attending the Chorus performance at the start of class. Your Warm-Up grade will be based on your Audience Etiquette and behavior in the hallway.

PGCPS Gmail Login | Student SchoolMax Login

Agenda:

  1. Previous Projects
    1. I normally grade over the weekend. This weekend, I helped my sister move.
    2. I hope to be caught up  this week.
  2. Series Video  6
    1. Due FRIDAY!
  3. Web Page Title Graphic
    1. Graded.
  4. Web Design
    1. <img>
      1. Needs NO closing tag.
      2. Does not contain an image, but points to one stored elsewhere.
      3. <img src="coolpicture.png"> works if there is an image named coolpicture.png in the same folder as the html document.
    2. <div></div>
      1. Creates a box.
      2. Multiple <div> tags can be used to create columns, each with their own formatting.
      3. Use <div style="float:left"> in each <div> tag to do this. Make each one as long as you want.
      4. If your content in your <div></div> tags is wider than the viewer's screen, the extra columns will be pushed down.
        1. (It's like when a line of text fills up and the next word goes down to the next line.)
      5. There's a LOT more to <div></div>, but this is a good start.