Learning Objectives
Learn to design and modify tables using a complete Web Authoring System to do the following:
Using a Web Authoring System
This assignment must be completed individually.
A Web Authoring System is more than just an HTML editor. Web authoring tools generally include an HTML editor as well as tools for managing web sites.
Dreamweaver is a popular commercial web authoring tool which runs on Mac as well as Windows (but not Linux) and which is currently running $300-$400. Because Berea College owns a license for it, you may download a key-served copy on to your computer from the Add/Remove Software icon in your Control panel. Please note that you will only be able to use it while connected to the College network. Because of the size of this program, we will not all be able to install it from the server at once, in a timely fashion. If you have an interest in Dreamweaver, you may install it on your own later on. A good alternative to Dreamweaver, which is a much more light-weight download is a web authoring program called KompoZer.
KompoZer, formerly called NVu, is an open source tool which runs on a larger variety of computer platforms and which is freely available on the web from sites such as SourceForge.net. Please download this program, as we will be using it for the assignment in class today. Both of these programs have advantages and disadvantages, but both have good WYSIWYG (What You See Is What You Get) HTML editors which not only include nice features such as spelling checkers but also create properly structured HTML code and support the use of CSS. I can recommend both programs, and have both installed on my laptop.
If you create a new document in KompoZer and look at the source HTML code, you will see the following:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title></title>
</head>
<body>
<br>
</body>
</html>
This is a property structured HTML document which could be easily edited in Notepad or Dreamweaver without difficulty. We see that there are only two HTML element which we would not have put in by hand, namely an extra !DOCTYPE element, and an extra META tag. Both of these are acceptable HTML tags. Dreamweaver creates a very similar HTML document.
Several versions ago Microsoft Word added a "Save As HTML" feature. Be forewarned that Word was not created as an HTML editor (They made FrontPage for that), and Word has a great deal of functionality which is not supported in HTML. So, the bottom line is using the "Save as HTML" feature in Word will create a mess of HTML which is virtually indecipherable. Feel free to try it (as an experiment only). Dreamweaver actually has an option for "Cleaning Word Generated HTML," which attempts to remove all of the unnecessary tags Word inserts.
Using a Web Authoring System
Now that you have learned the basics of HTML syntax in Notepad, this assignment will help you to learn to create web pages more quickly than might be possible by typing HTML directly. As a person who creates many web pages, I find that I continue to use both HTML as well as web authoring systems, so it is important to be versatile with both. Note that you will still be held accountable to being able to create HTML directly!
Your Assignment
This assignment must be completed individually, but may be used as part of your personal web page.
KompoZer is a complete Web Authoring System which includes an HTML editor, browser previewer, and ftp assistance for uploading to name a few features. Because it has a WYSIWYG editor, it is reasonably intuitive to use, but there are a few features you may not expect. Your assignment today is to spend the class time in familiarizing yourself KompoZer. Once you have it installed, go to any of the html files that you have created in Notepad, right-click on the name of the html file and select edit in KompoZer.
Look either at near the bottom of the window in KompoZer
for . Click
on each of these buttons or tabs to see how you can see view the HTML
code,
just the body of the HTML document, or other views. You can edit in
each of these modes, and you can move among them.
In particular, I would like you to work with this program to edit your personal web page as well as to make a new web page. Be sure to explore all of the following features:
What to Submit for this A7 Assignment:
Copyright © 2011 Jan Pearce