Skip to content

Latest commit

 

History

History
233 lines (222 loc) · 3.56 KB

File metadata and controls

233 lines (222 loc) · 3.56 KB

#HTML/CSS Class Content - What to expect

##HTML

  • Browser / Server interaction
  • DOCTYPE
  • Meta Data Tags
    • head
    • title
    • base
    • link
    • meta
      • charset
      • http-equiv
      • default-style
      • refresh
      • set-cookie
      • application-name
      • author
      • description
      • generator
      • keywords
      • viewport
    • style
  • Types of Tags
    • inline
      • goes with the flow of the content
    • block
      • wants to have a line to itself and wants it's width to be 100% of it's parent.
  • Tags
    • Tag relationships
      • Parent / Descendent / Child
    • Layout/Grouping tags
      • using 'div' tags
      • using 'span' tags
      • boxes vs. handles
    • Content tags
      • block elements
        • header
        • blockquote
        • dd
        • address
        • audio
        • dl
        • fieldset
        • figure
        • form
        • h1,h2,h3, etc.
      • Typical inline elements
        • p
        • ul, ol
        • dt
        • hr
        • a
        • strong
        • pre
        • code
        • img
        • br
        • sub
        • sup
      • form elements
        • button
        • input
        • label
        • textarea
        • select
      • tables
        • Use for Tablular data only!
        • thead
        • tbody
        • tr
        • td
        • caption
      • using attributes to expand the meaning of tags
        • href
        • title
        • rel
        • data
        • alt
      • Embeddable Content
        • iframe
        • img
        • object
        • param
        • video
        • audio
        • source
        • track
    • Identifying elements
      • ID's
        • only use once per page
      • Classes
        • multiple uses
        • adding multiple classes to a single element
  • HTML 5 Specific tags
    • header
    • hgroup
    • figcaption
    • figure
    • nav
    • footer
    • article
    • aside
    • canvas
    • block
    • audio
    • video
    • picture
  • HTML 5 Data Storage
    • Index DB
    • Local Storage
    • Web SQL
  • User Agents
    • Browser detection possibility vs. Capability Detection

##CSS

##Other