Archived copy for reference only
 

 

Graphic Design / Interactive Design / Fine & Applied Arts / Parkland College

Interactive Design Exercises
Dreamweaver: Personal Process Page (for GDS 222)

(Archived from 2019)

Objective

To review basic HTML and CSS skills by building a personal Process Page. To review responsive web development techniques by creating a page similar to this example.

Discussion

Keeping a good record of your design process is a good idea for many reasons. At the very least, it forces you to keep your files organized. Clients also expect you to manage the project well and one way to do it is by recording each step of the process. Last but not least, one can learn from observing one's own process and then improving on it in future projects.

Note: The Skeleton Responsive Framework is a lean alternative to Bootstrap which also uses the new rem unit for font sizing.

Tip: Do not delete any links that you add to your Process Page. Instead, always add new links when making revisions.

Procedure

Overview: Merge existing HTML page with downloaded Skeleton Responsive Framework. Add additional CSS styles. Replace banner art with an original creative solution created by you. Note: replace bold with personalized info.

Prepping for the exercise

  1. download starter files (location: faa999/gds222)
  2. download skeleton framework
  3. move download files into "gds222/html" folder
  4. launch Dreamweaver
  5. site > new site: site name=gds222;
    local site folder=faa999/gds222/html)
  6. open "content.html"
  7. view > code and design
  8. change "jane smith" to your name (search source code, replace all)
  9. add email link to your name (ie. "mailto:jsmith@gmail.com")
  10. select <body>: copy to clipboard
  11. open "index.html"
  12. select <div.row>; DELETE
  13. paste clipboard contents into <div.container>

Formatting the content

  1. change document title to "Jane Smith Graphic Designer"
  2. select <div#header>
  3. insert > div (wraparound): class="row"
  4. repeat with <div#p1> etc
  5. select <container>; arrow left
  6. insert > image: "222.png"; id=banner
  7. select <img#banner>
  8. insert > div (wraparound): class=container
  9. select <div.container>
  10. insert > div (wraparound): id=top
  11. replace font (line 18): <link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400italic,700,700italic' rel='stylesheet' type='text/css'>

Adding CSS styles

  1. window > CSS designer: add source: define in page (+)
  2. window > CSS designer: add selectors: 
    • a: text: decoration=none, color=#6BA400 
     a:hover: text: color=#6BA400, decoration=underline
    • p: margin-bottom=1rem
    • ul: padding-left=2rem
    • li: margin-bottom=0
    • h2: margin-bottom=4rem
    • small: display=block, margin-bottom=80px
  3. add font CSS to <style> in <head> (code view):
    body { font-family: 'Roboto Condensed', sans-serif; }
  4. file > preview in browser (opt+F12 and cmd+F12)
  5. window > CSS designer: add additional selectors: 
    • #banner: min-width=400px
    • #top: margin-bottom=15px, bg-color=#C7D1B4 (eye-dropper)
    • .img-responsive: height=auto, max-width=100%
  6. select "222.png": add responsive class
  7. file > preview in browser (opt+F12 and cmd+F12)

Fine-tuning the column structure

  1. select <ul> in <div#p1>: insert > div (wraparound): class="ten columns" (code view)
  2. select <p> <strong>: insert > div (wraparound): class="two columns" (code view)
  3. repeat with other projects
  4. file > preview in browser (opt+F12 and cmd+F12)

Grading

  1. replace header image with your own custom art work
  2. customize anchor colors
  3. publish your page (see separate instructions)
  4. keep this page updated with your work as the semester progresses

BACK TO TOP
Last updated: 5/7/21