
Fill in the blanks below to add to our corkboard. Only the "Comments" and "Name" blanks (in boldface and marked with an asterisk ' * ' ) are required. However, if you want a mail link beside your name at the bottom of your posting, you will have to enter your e-mail address in the form. And if you'd like your name linked to a particular website you need to enter the URL in the form as well.
The Heading entry will automatically appear as the title of your message and will also appear at the sidebar of everypage. HTML will work in the "Comments" text area should you desire to format your message (see tips below), add links, or insert images provided that you can reference the image correctly. Thanks!
* Back to the Corkboard
Some Very Basic HTML Tips
- Separate your paragraphs with a blank line and always add two blank lines after the last paragraph of your message.
- If you want place a line break within a paragraph use a <BR> tag. However, as our editor strips these automatically, when found at the end of a line, you should add on a blank space " " right after the tag so it should appear as "<BR> " without the double quotes.
- Titles can be given emphasis by enclosing them in level three heading or "H3" container such as in:
<h3>Assistance for Next Premiere</h3>
which appears as:
Assistance for Next Premiere
- Text within paragraphs can be presented in boldface by enclosing them in a "B" container such as in:
<b>contact the webmaster</b>
which appears as:
contact the webmaster
- For Italic style, simply replace the b's with i's in the example above to get:
contact the webmaster
- And for bold Italic, enclose one over the other.
i.e. <i><b>....</b></i>
which appears as:
contact the webmaster
- You can create a bulleted list like the one enumerating these tips by starting the first line of each list item with the "li" tag and enclosing the entire list with the "ul" container such as in:
<ul>
<li>the first blah, blah, blah
<li>the next blah, blah, blah
</ul>
|