COMM 310 January Notes

COMM 310 Creating Online Media Notes

CIT 230 Web Fundamentals Notes

Jan 9 Notes

The anatomy of an HTML Element:

  • Attribute
  • Attribute value
  • Content
  • Opening tag
  • Closing tag

Jan 16 Notes

Always Always HTML rules

  • Always write tags in lower case.
  • Tags must always close.
  • Attribute values must always be in quotes.
  • Elements must be nested properly.

Never Never Land HTML Rules

  • Never write style in the HTML.
  • Never label content something that it is not.
  • Never use a generic label if a more descriptive label exists.
  • Never substitue an image for text.
  • Never leave an HTML document untitled.

Images must always have 'alt' text.

Jan 23 Notes

Block:

  • Hello
  • Hello
  • Hello

Inline:

  • Hello
  • Hello
  • Hello

Linking to outside CSS: [link href="style.css" rel="stylesheet" /]

Jan 31 Notes

Anatomy of a CSS Rule

  • Selector
  • Property
  • Property value
  • Statement