
The Art of Scintography Edition 3.0 © 2008 Aurora Isaac www.scintography.com | |||||
9.1 A Working Page | |||||
|
In the previous sections we have examined the details of HTML, STYLE, and SCRIPT.
Now we combine these components to see them in action.
As you are working on your page design, it will be easier to keep your STYLE and SCRIPT with your page. As you go through your cycle of edit/upload/view, you will want to see your changes immediately. If you keep your STYLE and SCRIPT in separate files, this may not happen. Your browser keeps files downloaded for viewing in a cache. If your URL request needs a file that is already downloaded, your browser uses the cached file to avoid taking time to download the file again. If you need a new version of your file to come from the server, you may need to empty your browser cache to see it. When you are ready to share your STYLE and SCRIPT with other pages, move them to separate files.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN"
"http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<STYLE TYPE="text/css"> </HEAD>
<BODY>
</HTML></BODY> | |||||
9.2 Cut-And-Paste Pages | |||||
The Cut-And-Paste Pages offer examples of simple page layouts.
You may use them as is, customize them to your own style, extract portions you find useful,
or just let them inspire you when you are in need of a starting point.
Like the Tutorials, the HTML source appears on the left and the formatted page appears on the right. To provide versatility in customizing pages, the source code may contain more complexity than you require. Explore the various options available, then cut and paste to suit your need.
| |||||
|
Letterhead
| ||||
|
Newsletter
| ||||
|
Textbook
| ||||
|
Collage
| ||||
9.3 Connecting | |||||
|
From your basic HTML knowledge, adding a touch of STYLE and a dab of SCRIPT, you have created the perfect page.
Now it is time for the finishing touch -- the flourish that will bring you recognition.
When your page is accessed by its URL, the text content of the file is transmitted. Other information is transmitted along with the page, some of which you have control over. This information may be used in a variety of ways. It is there primarily to help the applications that read your site to integrate it into the networking community at large. The <META> tags are placed in the head of your HTML document. These tags provide information on the content and use of the document, and on the availability of other associated documents. Each META tag assigns a value to a variable. The name of the variable can be set by the HTTP-EQUIV attribtue or the NAME attribute, and the value assigned to the variable is set by the CONTENT attribute:
<META
The HTTP-EQUIV assignment of variableName="Variable Value" will be put in the HTTP header that accompanies the transmitted document.
The exact variableName used in your META tag, and whether it is assigned to the NAME or HTTP-EQUIV attribute,
depends on common usage.
This is an extensible language, and any variable names can be used,
but they will only be used if they are recognized and understood by the applications accessing your site.
This tutorial introduces some of the commonly used variable names and their applications.
HTTP-EQUIV="variableName" CONTENT="Variable Value" >
<META With these finishing touches, your completed .htm(l) file should look something like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN"
"http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<TITLE>Title of this page</TITLE> </HEAD>
<BODY>
</HTML></BODY> | ||||
9.4 References | |||||
|
1
Creating Killer Web Sites http://www.killersites.com/core.html
2
A Dictionary of HTML META Tags
3
Meta tags - what, where, when, why?
4
Microsoft Developers Network Library
5
: Introduction to Filters and Transitions
6
: (ISO) Language Codes
7
: META Element | meta Object
8
High Rankings
9
: All About Title Tags, Jill Whalen
10
YALE Web Style Guide
11
World Wide Web Consortium
12
: Associated Meta-information: META
13
: The global structure of an HTML document
14
: Notes on helping search engines index your Web site | |||||
| All Contents © 2008 Aurora Isaac. All Rights Reserved. Legal Notices. | |||||