
Contents:
Page
Font
Text
Image
Form
Table
Frame
Inline
|
Document Structures

| |
<html>...</html>
<head>...</head>
<body>...</body>
<HTML>
<HEAD>
<title>, <base>, <link>, <isindex>, <meta>
</HEAD>
<BODY>
Body of the document
</BODY>
</HTML>
|
Background and Text Color

| |
Page Color:
<body bgcolor=# text=# link=# alink=# vlink=#>
#= rrggbb Hex Number, or Name:
Black,
Olive,
Teal,
Red,
Blue,
Maroon,
Navy,
Gray,
Lime,
Fuchsia,
White,
Green,
Purple,
Silver,
Yellow,
Aqua
- bgcolor --- background color
- text --- text color
- link --- link color
- alink --- active link color
- vlink --- visited link color
Background Image:
<body background="URL">
Non Scrolling Background:
<body background="URL" bgproperties=FIXED>
|
Page Margin

| |
Left Margin: <body leftmargin=#>
Top Margin: <body topmargin=#> # = margin amount
|
Link

| |
Link Basic:
<a href="URL"> ... </a>
This is a
<a href="url.html">Link Test</a>.
Try to push!
|
This is a Link Test. Try to push!
|
Jump to part of a page:
<a href="#name"> ... </a>
<a name="name"> ... </a>
Jump to part of an other page:
<a href="URL#name"> ... </a>
<a name="name"> ... </a>
Jump to
<a href="url.html#jump-test">
Jump to next "Link Target"</a>
of an other document.
|
Jump to "Link Target"
of an other document.
|
|
Target Windows

| |
<a href="URL" target="Window_Name"> ... </a>
<a href="url.html"
target="window_name">
Open A Window!</a>
|
Open A Window!
|
|
Horizontal Rules

| |
<hr>:
<hr>
<hr size=#>:
<hr size=10>
<hr width=#>:
<hr width=50>
<hr width=50%>
<hr align=#>:
#=left, right
<hr width=50% align=left>
<hr width=50% align=right>
<hr noshade>:
<hr noshade>
<hr color=#>:
#= rrggbb Hex Number, or Name:
Black,
Olive,
Teal,
Red,
Blue,
Maroon,
Navy,
Gray,
Lime,
Fuchsia,
White,
Green,
Purple,
Silver,
Yellow,
Aqua
<hr color="red">
|
|