Posting Tips
Back to Sign the Guestbook

How do I make smiley faces?

To post a smiley face, simply enter any of the face symbols below to get the corresponding face:

Note that the owner of the guestbook may have disabled smiley faces. The feature is currently .


How can I format the text in my message?

This can be done by surrounding a segment of text with two HTML tags, a starting tag and an ending tag. Tags are special commands contained between < and > characters. For example, to get italic text you can enter <i> to turn on italics, follow it with the text to be italicised, then enter </i> to turn off italics. The forward slash (/) in the ending tag denotes it as an ending tag, rather than another starting tag. Note that you won't be able to see the formatting until after you have posted your message. Some examples of tags include:

<b>bold</b>
<i>italic</i>
<u>underline</u>


How do I make bulleted or numbered lists?

These are made using HTML tags as well, but the tags a used a little differently this time. To start a numbered list, use the <ol> tag (which stands for "ordered list"). To end a numbered list, use the </ol> tag. To start a bulleted list, use the <ul> tag (which stands for "unordered list"). To end a bulleted list, use the </ul> tag. Then, simply place the <li> tag wherever a new item in the list starts. For example:

<ol>
<li>This is the first item!
<li>This is the second item!
<li>This is the third item!
</ol>

Results in:

  1. This is the first item!
  2. This is the second item!
  3. This is the third item!

Note that the owner of the guestbook may have disabled some HTML tags. The owner may have also disabled HTML entirely. HTML is currently , and acceptable tags are .