COURSE SCHEDULE

(Last Revised: August 29, 2019)

Disclaimer: The instructor reserves the right to make changes in the course schedule.

Date
Online Reading / Videos
In Class Exercises / Projects

 

 

PROJECTS are to be completed and DUE by the due date.

 

Aug 15

Overview, Expectations, HTML Basics

LESSON OBJECTIVES

  1. Student Learning Outcomes (SLO) - Course Introduction
  2. HTML1: Go to w3schools.com - The World's Largest Web Developer Site
    • Click on HTML Introduction
    • Click on HTML Editor - USE Notepad
    • Click on HTML Basics
    • Click on HTML Headings
    • Click on HTML Paragraphs

IN-CLASS Exercise (To Be Graded In Class):

  1. Create your Folder on the Desktop.
  2. Create a CS211 Folder in Google Drive, SHARE the folder with me (yvonne.flores@guamcc.edu)
  3. Create a HTML template web page with the necessary HTML tags:
    • Save As: template.html
    • Save as type: All Files
    • Encoding: UTF-8
  4. HTML1:
    • Open template.html, Save As: html1.html
    • HTML Home, Introduction, Editor, Basics, Heading, Paragraph
  5. GCC's Mission Statement - Open template.html, Save As: mission.html. Create a HTML web page that will display:
    • GCC's Mission Statement as the title of the web page, the GCC Mission Statement as a heading and the multi-line mission statement below it.
  6. Internet Service Providers - Open template.html, Save As: isps.html. Create a HTML web page that will display:
    • Customer Service Information for 3 Internet Service Providers on Guam
    • Include a web page title, headings and customer information for the 3 ISPs.
  7. DRAG template.html, html1.html, mission.html, isps.html to your Shared CS211 folder.
  8. Check Your Email after today's class.
 

 

HTML Basics

Opening Tag Closing Tag
<!DOCTYPE html>

<html>

</html>

<head>

</head>

<title>

</title>

<body>

</body>

<h1><h2><h3><h4><h5><h6>

</h1></h2></h3></h4></h5></h6>

<hr>

no closing tag

<p>

</p>

<br>

no closing tag

<pre>

</pre>

Aug 20

LESSON OBJECTIVES

  1. HTML2: Go to w3schools.com
    • Click on HTML Attributes
    • Click on HTML Links
      • Link <a> Syntax
        • href Attribute
        • target Attribute
        • title Attribute
    • Click on HTML Images
      • Image <img> Syntax
        • src Attribute
        • alt Attribute
        • width Attribute
        • height Attribute
        • style Attribute
    • Click on HTML Lists
      • Unordered Lists <ul> Syntax and Ordered Lists <ol> Syntax
        • List Item <li> Syntax
        • styleAttribute
        • type Attribute
      • Description Lists <dl> Syntax
        • Description List Term <dt> Syntax
        • Description List Definition <dd> Syntax
  2. For HTML Recap - Go to w3schools.com HTML Tutorial
    • Scroll to the bottom Click on HTML Examples

 

IN-CLASS Exercise (To Be Graded In Class):

  1. Create your Folder on the Desktop.
  2. Open Notepad, create a web page with the necessary HTML tags.
    • Save As: html2.html
    • Save as type: All Files
    • Encoding: UTF-8
  3. For the following Exercise
    • Heading between each section.
    • Horizontal Rule between each section
    • 3 Working Links that open to a new page.
    • Unordered List of Taco Bell locations.
    • Ordered List of your Favorite Restaurants
    • 3 Images
    • Definition List with at least 3 computer terms.
  4. DRAG html2.html to your Shared CS211 folder.
 

HTML Basics (continued)

Opening Tag Closing Tag

<a>

</a>

<img>

no closing tag

<ul>

</ul>

<ol>

</ol>

<li>

</li>

<dl> </dl>
<dt> </dt>
<dd> </dd>

 

HTML Attributes - name="value" pairs

Attribute
name="value" pairs
href
<a href="https://www.w3schools.com">This is a link</a>
target
<a href="https://www.w3schools.com/" target="_blank">Visit W3Schools!</a>

src

alt

width

height

<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
style
<ul style="list-style-type:circle">
type

<ol type="a">

<ol type="I">

<ol type="i">
start
<ol start="50">
Aug 22

LESSON OBJECTIVES

  1. HTML3: Go to w3schools.com
    • Click on HTML Attributes
    • Click on HTML Styles
    • Click on HTML Formatting
    • Click on HTML Quotations
    • Click on HTML Comments

HTML Project 1 - Letter (To Be Graded In Class)

  1. Download File: Click Here to Link to Google Drive for letter.txt file
    • You must log in using your guamcc email address.
    • Download to your folder.
  2. OPEN the file in NOTEPAD, SAVE AS:
    • letterfinal.html
    • Save as type: All files
    • Encoding: UTF-8
  3. Click Here to view the Project Briefs.
    • MARKUP the file using the <HTML> tags and attributes you have learn so far.
    • Make sure your are SAVING your file periodically.
  4. Click Here to view the OUTPUT
  5. DRAG letterfinal.html to your Shared CS211 folder.

 

 

HTML Attributes - comes in name="value" pairs

Attribute
name="value" pairs
style
<p style="color:red">I am a paragraph</p>
<body style="background-color:powderblue;">
<h1 style="font-family:verdana;">This is a heading</h1>

<h1 style="text-align:center;">Centered Heading</h1>

<p style="text-align:center;">Centered paragraph.</p>

<p style="font-size:160%;">This is a paragraph.</p>
HTML Formatting
Opening Tag Closing Tag

<b>

</b>

<strong>

</strong>

<i>

</i>

<em>

</em>

<mark>

</mark>

<small>

</small>
<del> </del>
<sub> </sub>
<sup> </sup>

HTML Quotations

Opening Tag Closing Tag

<q>

</q>

<blockquote>

</blockquote>
<abbr> </abbr>
<address> </address>
<cite> </cite>
<bdo> </bdo>
Aug 27

LESSON OBJECTIVES

  1. HTML4: Go to w3schools.com
    • Click on HTML Blocks
    • Click on HTML Tables

IN-CLASS Exercise (To Be Graded In Class):

  1. Click on Link for Instructions: <div>, <span>
  2. Click on Link for Instructions: <table>
  3. DRAG div/table.html file to your Shared CS211 folder.

HTML Blocks

Opening Tag Closing Tag

<div>

</div>

<span> </span>

HTML Tables

Opening Tag Closing Tag

<table>

</table>

<tr> </tr>
<th> </th>
<td> </td>
Aug 29

LESSON OBJECTIVES

  1. HTML5: Go to w3schools.com
    • Click on HTML Forms
    • Click on HTML Form Elements
    • Click on HTML Input Types
    • Click on HTML Input Attributes

IN-CLASS Exercise (To Be Graded In Class):

  1. Click on Link for Instructions: <form>
  2. DRAG form.html file to your Shared CS211 folder.
 

HTML Form

Opening Tag Closing Tag

<form>

</form>

<input> no closing tag
<textarea> </textarea>
<label> </label>
<fieldset> </fieldset>
<legend> </legend>
<select> </select>
<optgroup> <optgroup>
<option> </option>
<button>  

© 2019 Yvonne C. Flores, Guam Community College