William M. Pegram
Home | Courses | Web Design | Server-Side Scripting | About Me

ITE 170 Schedule - Section 003N- Fall 2019

Revised: December 2, 2019

The schedule will be updated with links to homework exercises and additional material as the course progresses.  The most current copy of this schedule can be found www.billpegram.com. Material below the X in the first column is tentative; students should not work on assignments shown below the X since the assignment will likely change. Some of the HTML/CSS material shown below we may not get to.

  Week Class Topics Reading/Homework Due (more will be added as course progresses) 
 

Week 1 - 8/19

Course Introduction and HTML

HTML

  • starter.html - a file you can use as a start file for coding in this course
  • * Viewing the source code of a web page in a browser - Chrome or Firefox: Right-click in empty area of page (not over an image)> View page source. Edge: Right-click in page> View source
  • File>Open in Browser (Ctrl O in any browser)
  • * When you make a change in the file in the text editor, you must save the file and refresh/reload the page in the browser
  • making filename extensions visible: In Windows 10, click on the Folder icon in the task bar to open in File Explorer, then select "View" on the menu and check the box "File name extensions". For earlier Windows operating systems, do a search on this topic.
  • Browsers ignore whitespace in file

Dreamweaver

  • When you launch Dreamweaver, choice between Developer and Standard Workspaces - choose Standard so that various Dreamweaver panels will be available
  • Window>Toolbars>Document - so that you can easily switch between code view, design/live, and split view - Live View will indicate how it actually will look, whereas Design view only supports limited CSS - Design view is better for entering text - Various split view options - View>Split
  • Good to learn how to do common things in design view since it will often be quicker than doing it in code view

HTML

  • Save starter.html to your desktop
  • *<!DOCTYPE html>, <html>. <head>, <body>, head and body sections, <title> tag

 

 

Week 2 - 8/26
HTML

HTML

  • naming folders and pages - no spaces, lowercase (because case-sensitive on some servers), .html or .htm (use one consistently) for pages
  • Save in text editor/Dreamweaver and refresh in browser to see changes in browser
  • <h1> ... <h6>, <p>, <br>
  • Validation
  • Using myDrive as your webspace - myDrive instructions and myDrive video - put everything in a folder called public. To get the URL you give to others, click on "My Web Root" in myDrive.; When you give the URL of your website to to others, make sure it contains your myNOVA username and the word "public" - the viewer of your website should not see the myDrive logo or the file manager. Do not use the "Share" or "Email" options discussed in the video since the goal is to have your website available to everyone.
  • To upload your files, you can either use the myDrive file manager or use an FTP program such as Core FTP
  • *Creating absolute and relative links - the html and in DW
  • * images - img tag, height, width, and alt attributes
  • ordered and unordered lists, special entity characters (e.g. &nbsp;)

 

  • * HTML Tutorial
    • So You Want to Make a Website
    • Creating Your First Web Page
    • Naming Your Page
    • Viewing Your Page in a Browser
    • Revising Your Web Page
    • Validation
    • FTPing to the Server
    • Linking
    • Images
    • Lists

    W3Schools HTML Tutorial

    • HTML Intro
    • text editors and viewing your page in a browser
    • HTML Basic Examples
    • HTML Elements
    • HTML Attributes
    • HTML Headings
    • HTML Paragraphs
  • HTML 5 Tags and Attribute reference (from W3C Schools) (for reference)
  • Dreamweaver in a Book - Chapter 1 (Customizing Your Workspace), Chapter 2 (HTML Basics)
 

Week 3 - 9/9
Dreamweaver,
Web Graphics

HTML/Dreamweaver

  • Property inspector is context-sensitive and in CC now floats by default, can dock it by dragging to bottom till you use blue line
  • Viewing page in browser from Dreamweaver
  • - File>Real-time Preview - If problems, to get legacy behavior, right click on filename in tab or in Files menu and choose Open in Browser
  • HTML comments - e.g. to indicate the source of the image
  • *Making images into links
  • Advantages of NotePad++ over Notepad (once file is saved as .html or .htm)
    • color-coding
    • can have multiple tabs, one file per tab
    • line numbers
    • tag and attribute suggestions
    • "fold up" sections of code
    • Can launch browser from NotePad++ program to display file in tab
  • Importance of saving a file before creating relative reference from file
  • <hr>, <blockquote>
  • Copying and Pasting in Design and Code View
  • Adding Pages to Website by right-clicking in Files panel or by choosing File>New
  • Site Definition in Dreamweaver (9 minute video)
  • Renaming or moving files or folders within Files panel (updating depends on proper site definition)
  • Publish and Manage Websites (requires site definition) (8 minute video) - The video describes the synchronization process, but often you may simply want to put and get. DW puts things in the right place, preserving the folder structure if you use the arrows for uploading and downloading (but drag-and-drop does not); the contents of the dreamweaver site will be uploaded but the folder itself will not be. With NVCC myDrive, must specify public as the root directory so that all files are put there
  • local files can appear on the left (like they do in Core FTP) by choosing Edit>Preferences>Site

Cascading Style Sheets

  • The role of HTML and CSS in a website
  • *external, embedded, and inline CSS - external is generally best (ease of maintenance, consistency, responsiveness (can have different styles for different viewports (devices) through use of media queries (later in course)
  • styling tags - e.g. h2 {color:red}
  • *CSS ways of specifying color - color names, hexadecimal, RGB
  • * commonly used CSS properties - color, font-size, background-color, font-family (specifying first, second, and third choices)
  • *CSS classes
  • HTML and CSS comments
 

Week 4 - 9/16

Uploading a folder and its contents to myDrive - 1) zip the folder (right-click on the folder, and then within myDrive, choose Send To>compressed (zip) folder, then upload the zip file, select it, and click on Upzip button at the far right or 2) Use CoreFTP to upload the folder (not the zipped folder)

Cascading Style Sheets

  • text-align property
  • *classes and id's
  • span tag

HTML5 Structural elements - Most common: <header>, <nav>, <main>, <footer>; also <article>, <aside> - previously structure done with div

Overriding examples

Background Images and tiling

Tables with Dreamweaverr

  • * <table>, <tr>, <td> and <th> tags

  • border attribute of the <table> tag; colspan and rowspan attributes of the <td> and <th> tag
  Week 5 - 9/23

Dreamweaver

Dreamweaver site definition

  • The folder you designate as the root folder of your site will not be uploaded but the contents of that folder will be uploaded.
  • Setting default images folder in site definition (when inserting image from your computer but outside of the Dreamweaver site definition, will automatically copy into designated images folder within site)
  • Adding Keywords (Insert>HTML>Keywords), Description (Insert>HTML>Description) Meta Information)
  • Horizontal Rules (Insert>HTML>Horizontal Rule) and Special Characters (Insert>HTML>Character
  • Find and Replace (Find>Find and Replace in Files)
  • File>Page Properties - Appearance (HTML) produces deprecated HTML attributes, so use Appearance (CSS) instead, use of color picker (at lower right portion of panel) to get colors from other sources, specification of font-family for page
  • Check Spelling (Tools > Spell Check)
  • Referencing content in other folders in a website
  • *Link to Named Anchors/Fragment Identifiers (www.youtube.com/watch?v=WoIeq3PS2Es - 8 minute video) - id's are assigned in the Property Inspector and the links to those are as well, with the id preceded by a # sign, click on desired tag in Tag Selector at bottom of screen before assigning id to make sure it's assigned to correct tag, after applying, the tag selector will show id, and can use dropdown menu in Link box to reuse links; fragment identifier example, Skip Navigation links article
  • CSS

 

  Week 6 - 9/30



Week 7 - 10/7
Midterm


 

 

  10/14 - NVCC non-instructional day - no class    
  Week 8 - 10/21


 

Week 9 - 10/28

 



 

 

 

  Week 10 - 11/4



 

  • Photoshop Chapter 1, 2
  • Get to know Photoshop (Adobe video)
    • Open and create images (3 minutes)
    • Tour the work area (4 minutes)
    • Zoom and pan (5 minutes)
    • Undo a command (5 minutes)
    • Save your work (4 1/2 minutes)
    • My notes on the video
  • Adjust the image quality (Adobe video)
    • Adjust brightness and contrast (4 minutes)
    • Adjust color vibrance (3 minutes)
    • Adjust hue and saturation (5 minutes)
    • Learn about adjustment layers (4 minutes)
  • Retouch images (Adobe video)
    • Remove small objects (4 minutes)
    • Add objects by cloning (3 minutes)
    • Remove a large object (3 minutes)
    • My notes from the video

 

Week 11 - 11/11

  • Make selections (Adobe video)
    • Learn selection basics (4 minutes)
    • Learn how to use the Quick Selection and Lasso Tools (5 minutes)
    • Fine tune a selection (5 minutes)
  • Work with layers (Adobe video)
    • Understand layers (5 minutes)
    • Learn layer basics (5 minutes)
    • Resize a layer (4 minutes)
    • Add images to a layered design (4 minutes)
    • Unlock the background layers (4 minutes)

 

 

Week 12 - 11/18

  • Use color (Adobe video)
    • Work with brushes (5 minutes)
    • Use foreground and background colors (2 minutes)
    • Choose a color (3 1/2 minutes)
  • Add text and shapes (Adobe video)
    • Add text (5 minutes)
    • Edit text (4 minutes)
    • Create a graphic shape (4 1/2 minutes)
    • Add a built-in custom shape (3 1/2 minutes)
    • My notes from the video

 

 

Week 13 - 11/25


 

 

Week 14 - 12/2




  Week 15 - 12/9
  Week 16 - 12/16
Time 3:30-5:10pm)
 
Topics not covered or assigned Flash Short Assignment 2
Flash Assignment 3

Extra material -

 

Dreamweaver Videos (will be added as appropriate to the weeks above)

Animate Videos

Premiere Pro Videos (will be added as appropriate to schedule above)

Resizing images in Photoshop (sample photo)

Working with Images (slides 2-5 only - gif and jpg formats)

Domain names

Homework 5 due (need to revise to make clear the two column layout should be done with CSS)

Homework 6

Forms homework