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

ITE 170 Schedule - Section 001N,002N- Spring 2019

Revised: April 29, 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
1/14 (college closed due to snow)

1/16 -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

 

 

 

Week 2
1/21 (Holiday), 1/23
HTML

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
  • Property inspector is context-sensitive and in CC now floats by default, can dock it by dragging to bottom till you use blue line
  • Save your work for today in Google Drive

HTML

  • Save starter.html to your desktop
  • *<!DOCTYPE html>, <html>. <head>, <body>, head and body sections, <title> tag
  • naming folders and pages - no spaces, lowercase (because case-sensitive on some servers), .html or .htm (use one consistently) for pages
  • Save and refresh
  • * ordered and unordered lists, special entity characters (e.g. &nbsp;)
  • * <h1> ... <h6>, <p>, <br>, <hr>, <blockquote>, phrase/logical elements
  • Validation
  • Using myDrive as your webspace - myDrive instructions - 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.
  • To upload your files, you can either use the myDrive file manager or use an FTP program such as Core FTP

 

  • * 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
    • 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
1/28, 1/30 (no class, school closed)
Dreamweaver,
Web Graphics

HTML/Dreamweaver

  • Core FTP to upload files to server
  • * Creating absolute and relative links - the html and in DW
  • Viewing page in browser
  • - 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
  • * images - img tag, height, width, and alt attributes
  • 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
 

Week 4
2/4, 2/6

  • *Unordered and Ordered Lists
  • 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, text-align, font-family (specifying first, second, and third choices)
  • * external, embedded, and inline overriding examples
  • * classes and id's
  • * span tag

Descendant/contextual selectors, use of HTML5 structural elements of <header>, <nav> and <footer>

  Week 5
2/11, 2/13
  • Uploading a folder and its contents to myDrive simplest way is to zip the folder (right-click on the folder, and choose Send To>compressed (zip) folder, then upload the zip file, select it, and click on Upzip button at the far right

    Dreamweaver

    • Inserting Structural elements - <div>, HTML5 structural elements: <header>, <nav>, <main>, <footer> - insert with DW using Insert menu
    • Setting default images folder in site definition (when inserting file outside of site, will automatically copy into designated images folder within site)
  • HTML and CSS and vs. HTML comments

Background Images and tiling

HTML and Dreamweaver

  • Tables with DW - - <table>, <tr>, <td> and <th> tags

  • border attribute of the <table> tag; colspan, rowspan attributes of the <td> and <th> tag
  • 2/11 class ended here.
  • 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)
  • 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

 

  Week 6
2/18, 2/20 (snow, no class)

CSS
X
Week 7
2/25, 2/27

 

 

  Week 8
3/4, 3/6

  3/11, 3/13
  • NVCC Spring Break - no classes
 
 

Week 9

3/18, 3/20

 

 

 

  Week 10
3/25, 3/27


 

 

Week 11
4/1, 4/3

  • 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 12
4/8, 4/10

  • 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 13
4/15, 4/17

  • 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 14
4/22




  4/24 Work with Graphics and Titles (Adobe video)
  • Work with Image Files (4 minutes)
  • Create a New Title ( 4 1/2 minutes
  • Change the Size of Clips (4 minutes)
  • My notes on the video
 
  4/29, 5/1

 

 

Week 15
for 12:30 section:
Mon 5/6 12-1:40pm
for 2pm section
Mon 5/6 2-3:40pm

  • Project (due May 3) (revised 4/14)
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