Some introductory web page (HTML) tutorials:
- Colors:
- Character codes & descriptions
- HTML <table> samples
- Tricky optical illusion using a table
- PaintShop links
- For more tutorials, see Design & HTML
- Understanding absolute & relative links, paths, URIs and URLs
- Some good tutorials
To Email someone: (Works with most, but not all, recent browsers/email programs)
- <A HREF="mailto:bogus@someserver.ext">Email someone</A>
- including a ?subject=some subject title does not work in some browsers
- example: <A HREF="mailto:bogus@domain.ext?subject=your suggested subject line">
Although it's rarely useful, here's how to create a new browser window:
- <A HREF="newpage.html" TARGET="resource window">Create a new browser</A>
- The TARGET="resource window" is static, and the key to making this work
- newpage.html is the name of your page
- To open a non-sizable pop-up window with the file, width and height specified.
- (Known bug: you must close a mini-browser window before opening a 2nd one)