CS 101   Web Construction,  Winter 2014,  Instructor:  Jeffrey Horn   GUIDE TO THE FINAL EXAM


GENERAL

TOPICS  (not necessarily complete, but I tried!)

  1. BASIC HTML
  2. MORE HTML
  3. BASIC CSS
  4. ADVANCED CSS (from Ch. )
  5. FORMS
  6. BASIC JAVASCRIPT
  7. OTHER TOPICS:

HTML ELEMENTS you should know (not necessarily complete!)

Document Structure:  <html><head><title><body><!--  comment -->

Text Spacing and Formatting:  <i><b><sub><sup><big><small><strong><cite><hr /><br /><quote>

Text Headings:  <h1><h2><h3><h4><h5><h6>

Grouping Text:  <p><dif> <span>

Lists:  <ul><ol><li>

Tables:   <table><tr><td><th><caption>

Forms and Programming:  <form><input type="text"><input type="radio"><input type="checkbox"><input type="submit"><textarea><select><script>

Others:   <img><a><style>

CSS PROPERTIES you should be aware of (not necessarily complete!)

You should feel comfortable with any of the properties on this handout.   By that I do not mean that you are expected to memorize them or know all of the different "value"s for them; just be able to have some idea what each does, if you come across them in some code, and be able to look them up if you need to use them yourself, ever.  I am more interested in whether or not you understand the css syntax used.   If you do, then I am sure that you could look up the properties and values and learn them on your own!

JAVASCRIPT COMMANDS you should know (not necessarily complete!)

Javascript Command Example
alert alert("Your age is below the minimum!");
if-then-else

if( age <  0)  
   {  alert("You are too young to enter.");   }
   else     {   alert("You may enter");   }

var var x;
assignment x = 1;
incrementing a variable x=x+1;     or    x++;
assignment to part of a form document.getElementById("totalPayment").value = cost_of_items + shipping + tax;
changing any attribute in a web page document.getElementById("aardvark").width =                  //  This assumes that the <img> element has id="aardvark".
                                                            document.getElementById("aardvark").width  + 10;
document.getElementById("barnyardAnimal").src = "horse.gif";   //  This assumes that the <img> element has id="barnyardAnimal".
comment
//    Use double slashes for short, one line comments

/*  This is the syntax for comments that span more than one line.  You can use whole paragraphs for comments, just by putting the slash-star and star-slash delimiters around the whole thing!  */

CS 101 Fall 2008 Final Exam Guide