Nancy Blachman
Variable Symbols, Inc.
356 Bush Street
Mountain View, CA 94041-1332
650 966 8999
650 966 8998 fax
nancy- at -variablesymbols.com
If you want to learn how to search effectively using Google, visit Google Guide, which you can find at www.googleguide.com.
There are (at least) two places to install HTML files that you want accessible from vaweb (http://vaweb.valinux.com).
public_html
in your home
directory:
mkdir ~/public_html
chmod 0755 ~/public_html
chmod
.
index.html
in the directory ~/public_html
directory. Here's a simple example.
<HTML>
<HEAD>
<TITLE>
Nancy Blachman's Home Page </TITLE>
</HEAD>
<BODY>
<H1>Nancy Blachman</H1>
She enjoys documentary films and playing squash.
</BODY>
</HTML>
mkdir directory
cd directory
cp file1 file2
mv file1 file2
xemacs filename
vi filename
ls -lt
chmod 0755 filename
chmod
specifies the permissions.
chmod +r filename
An HTML element may include a name, some attributes and some text or hypertext, and will appear in an HTML document as
<tag_name> text </tag_name>
<tag_name attribute_name=argument>
text </tag_name>
, or just
<tag_name>
<title> My Useful Document </title>
<H1 align=center> text </H1>
<html>
. . . </html>
<head>
. . . </head>
<body>
. . . </body>
<HTML>
<HEAD>
<TITLE>
Page Title
</TITLE>
</HEAD>
<BODY>
Text of document.
</BODY>
</HTML>
<html>
,
<head>
, and <body>
are actually
optional within HTML documents.
<title>
. . . </title>
<p>
<br>
<pre>
. . . </pre>
<pre>
tag can be used to include tables in
documents.
<plaintext>
<pre>
except no embedded tags will
be recognized, and since there is no end tag, the remainder of the
document will be rendered as plain text. This is an archaic tag.
Note that some browsers actually recognize a </plaintext>
tag, even though it is not defined by the standard.
<blockquote>
. . . </blockquote>
<h1>
. . .
</h1>
Most prominent header
<h2>
. . .
</h2>
<h3>
. . .
</h3>
<h4>
. . .
</h4>
<h5>
. . .
</h5>
<h6>
. . .
</h6>
Least prominent header
<em>
. . .
</em>
<strong>
. . .
</strong>
<big>
. . .
</big>
<small>
. . .
</small>
<strikethrough>
. . .
</strikethrough>
<pre>
. . .
</pre>
<code>
. . .
</code>
<samp>
. . .
</samp>
<kbd>
. . .
</kbd>
<var>
. . .
</var>
<dfn>
. . .
</dfn>
<cite>
. . .
</cite>
<font attributes>
. . .
</font>
SIZE="±n"
n
is an integer from 1 to 6.COLOR=name
name
is one of the colors supported by
the HTML browser.
FACE="fontnames"
fontnames
is a comma-separated list
of system font names.Black | Maroon | Green | Olive |
Navy | Purple | Teal | Gray |
Red | Lime | Yellow | Blue |
Fuchsia | Aqua | White | Silver |
<b>
. . . </b>
<i>
. . . </i>
<u>
. . . </u>
<tt>
. . . </tt>
<center>
. . . </center>
<div align=right/left/center/justify>
. . . </div>
<dl>
<dt>
First term to be defined
<dd>
Definition of first term
<dt>
Next term to be defined
<dd>
Next definition
</dl>
<dl>
attribute compact
can be used to
generate a definition list requiring less space.
<ul>
<li>
First item in the list
<li>
Next item in the list
</ul>
<ol>
<li>
First item in the list
<li>
Next item in the list
</ol>
<menu>
<li>
First item in the menu
<li>
Next item
</menu>
<dir>
<li>
First item in the list
<li>
Second item in the list
<li>
Next item in the list
</dir>
<!--
text -->
<address>
. . .
</address>
<img src="URL" alt="Alternate Text">
src
alt
align
align
can be one of top
,
middle
, or bottom
.
ismap
ismap
is present and the image tag is within
an anchor, the image will become a "clickable image". The pixel
coordinates of the cursor will be appended to the URL specified in the
anchor if the user clicks within the ismap image. The resulting URL will
take the form "URL?m,n" where m and n are integer coordinates, and the
URL will specify the location of a program that will examine
the pixel coordinates, and return an appropriate document.
<br>
<hr>
Nancy Blachman
The current URL is http://vaweb.valinux.com/Training/html/htmlReference.html
This file is based on the HTML Quick Reference
http://www.cc.ukans.edu/~acs/docs/other/HTML_quick.shtml
developed by the University of Kansas.
This quick reference was last modified Sunday, 19-Mar-2000
Problems, comments about this document to nancy@valinux.com
or call (408) 542-5715.