This is the first part in my guide to making a web page. At the bottom of each page there will be a link to illustrate exactly what I've used in examples throughout the whole page.
Jump to:
Attribute | Variable | Effect | ||||||||||||||||||
bgcolor | ="#HEX Color" |
Defines background color.
text
|
="#HEX Color"
|
Defines text color.
|
link
|
="#HEX Color"
|
Defines hyperlink color.
|
alink
|
="#HEX Color"
|
Defines active link color.
|
vlink
|
="HEX Color"
|
Defines visited link color.
|
background
|
="Graphic URL"
|
Defines background image.
|
align
|
=center | left | right
|
Defines alignment.
| |
The head tag surrounds a lot of the important information in
ones web site. It surrounds
the title tag
and
the meta tag
. It is always assumed
present even if missing so you don't have to put it in, but
there's no harm in having it there.
Usage Syntax:
The title tag is used to define what you want to put in the
title bar in your viewer's browser.
Usage Syntax:
This tag passes on information to the HTTP server or a program
run on the server. In all honesty, I've never used this tag
if you want more information on it please
e-mail me
. There is no closing tag for this.
Usage Syntax:
The Head Tag
<html>
<body +attributes >
<head>
. . .
</head>
. . .
</body>
</html>
The Title Tag
<html>
<body +attributes>
<head>
<title>
TITLE
</title>
</head>
. . .
</body>
</html>
The Meta Tag
<html>
<body +attributes>
<head>
<title>
TITLE
</title>
<meta>
</head>
. . .
</body>
</html>
Click here to see the coding for this page
This page was made using Notepad and using Cascading Style Sheets (which were also made in Notepad) for the layout.