Here are a minimal HTML example, my personal home page, some comments on the significance of markup (as opposed to layout) and the base documents for the language HTML.
The format of a URL is scheme:[//host.domain[:port]][/path/]filename where scheme is one of:
Here's a named anchor and here, rather perversely, is a reference to it followed closely by a second, which exploits the fact that it's in the same file (but one should always perfer to put an id="…" attribute on some other element rather than add a separate <a>…</a> just for the sake of giving it a name="…" attribute).
The descriptive list above could, as readilly, be done as a numbered (or
ordered
) list by using OL in place of DL – or with an un-numbered
(a.k.a. un-ordered) list by using UL – and replacing DT .. DD tags around
crucial bits (file, http, …) with an initial LI tag.
Naturally, lists can be nested.
The equivalent for verbatim is the PRE tag. For extended quotes, use BLOCKQUOTE. You can also add arbitrary comments, delimited by double-dash at each end, inside !-tagged items. Some browsers don't handle that correctly. You can break a line wherever you like with the BR tag: if you also want to insert a horizontal rule use the HR tag.
Raw fonts get you
samples(which seems to mean literal text after the manner of TT), KBD for key-names (C-M-f) and DFN for definitions.
HTML also supports escape sequences for all characters in the ISO-8859 Latin-1 character set. The SGML (Standard General Markup Language, I think) of which HTML (HyperText Markup Language) is a special case, supports (at least in some places I've seen) Greek letters in the form &<various>gr; where <various> is generally the roman letter(s) corresponding to the desired letter - eg &agr; for alpha, &bgr; for beta, &thgr; for theta and so on. Unfortunately, these don't seem to work here. (See the link at start of this paragraph for how they can be done.)
