Difference between revisions of "BTC640/ProcessingPrereq"

From CDOT Wiki
Jump to: navigation, search
(Lecture)
Line 2: Line 2:
  
 
Before we dive into processing we have to make sure you remember some of the stuff you learned in the following courses:
 
Before we dive into processing we have to make sure you remember some of the stuff you learned in the following courses:
 
  
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
Line 13: Line 12:
 
| Java || [https://scs.senecac.on.ca/course/btp400 BTP400] || [https://scs.senecac.on.ca/course/jac444 JAC444]
 
| Java || [https://scs.senecac.on.ca/course/btp400 BTP400] || [https://scs.senecac.on.ca/course/jac444 JAC444]
 
|}
 
|}
 +
 +
== HTML ==
 +
 +
This is a pretty basic topic, and every developer no matter in what field should know it - both because it's so simple, and because you'll certainly use it in your career.
 +
 +
We'll look at the most common HTML tags, inluding a, b, body, div, form, hX, img, input, li, noscript, p, table, and ul.
 +
 +
What makes HTML XHTML is more strict rules about how tags are used, and stricter (but not enforced) rules about formatting.
 +
 +
In XHTML formatting is preferably done using CSS. We'll look at some CSS examples
 +
 +
 +
 +
= References =
 +
 +
* http://en.wikipedia.org/wiki/Html_tags

Revision as of 21:04, 29 December 2011

Lecture

Before we dive into processing we have to make sure you remember some of the stuff you learned in the following courses:

Course BSD CPA
XHTML and JavaScript BTI220 INT222
Server-side web programming BTI320 INT322
Java BTP400 JAC444

HTML

This is a pretty basic topic, and every developer no matter in what field should know it - both because it's so simple, and because you'll certainly use it in your career.

We'll look at the most common HTML tags, inluding a, b, body, div, form, hX, img, input, li, noscript, p, table, and ul.

What makes HTML XHTML is more strict rules about how tags are used, and stricter (but not enforced) rules about formatting.

In XHTML formatting is preferably done using CSS. We'll look at some CSS examples


References