Announcements:
Assignments:
| # | Book |
Description |
What to submit Point Value |
Due Date/Time |
|---|---|---|---|---|
| 1 | Web 2.0 Concepts /Applications |
Read Chapter 1 “The Web Becomes 2.0” |
Type your answers in a Word document. Submit a printout. 10 pts |
Thursday, January 26th at the beginning of class |
| 2 | HTML, XHTML, and CSS |
Read Chapter 1 “Introduction to HTML, XHTML, and CSS” |
Submit a printout of both documents 10 pts |
|
| 3 | HTML, XHTML, and CSS as a reference | First Web Page Assign
|
Submit a printout of your code and copy your folder to the dropbox has explained in the handout. |
Tues, Jan 31 at the beginning of class |
| 4 | HTML, XHTML, and CSS as a reference Class notes and examples |
Second Web Page Assign | Submit a printout of your code and copy your folder to the dropbox has explained in the handout. | Tues, Feb 7th by 11:59 pm |
Handouts:
|
How to make a gradient image in Photoshop
Common xHTML and CSS handout. |
Submit a printout of your code and copy your folder to the dropbox has explained in the handout.
15 pts
xhtml template - copy into NotePad++, or some other text editor, to start a new web page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <style type="text/css"> </style> </head> <body> </body> </html>