Skip to content

Latest commit

 

History

History
82 lines (73 loc) · 2.73 KB

HW2.org

File metadata and controls

82 lines (73 loc) · 2.73 KB

HW2 - Personal Site

  • Write HTML for a personal page
  • Write CSS to style it
  • Test it (validate, browser test)

HTML

  • Required elements:
    • html
    • title
    • head
    • link
    • body
    • div
    • a
    • ul/ol
    • li
    • img
    • p
    • h1/h2/h3/h4
    • <!-- comments -->

CSS

  • More than 1 CSS file
  • Styles that “cascade”, ie some element whose style is affected by more than 1 declaration
  • 1 or more use of inline CSS
  • Semantic use of class, id attributes
  • / * comments * /

Testing

Pull Request

  • Should have all the files
  • In the description, include which browsers you tested with, including versions
  • The URL to your page

public_html

  • Make your page public
cd ~/public_html
ln -s ../webarch2014/public_html webarch2014
# makes your repository publicly available
cd ~/webarch2014 # go back into repository
git checkout master
git pull jblomo
git checkout -b hw2-html
pico public_html/index.html   # make your changes

Extra Credit

  • Create an additional page with Bootstrap
  • Use at least 1 Component
  • Extra credit applies up to full credit on a particular assignment

Motivation

  • Main motivation is for those looking to become web developers, what can you do to set yourself apart?
  • Will make up for mistakes in the main assignment
  • Amount of extra credit given will depend on assignment, effort, and will be at instructor’s discretion