- This topic is empty.
- AuthorPosts
- September 24, 2003 at 3:12 am#4267
Proclaimer
ParticipantIf you need help, you should try the ‘Help’ link at the top of every page. Just before the ‘Search’ link.
If you cannot find what you are looking for, then make a NEW post detailing your problem. Click the New Topic button.
March 15, 2005 at 7:07 pm#5695Cubes
ParticipantHello t8,
Could you help me use the function keys on my computer for bolding, italics, etc.?
They don't seem to work in your forum from my computer.
Testing:
bold
italics
quoteMarch 15, 2005 at 10:25 pm#5697Admin
KeymasterTest
Test
Test
Test
test@test.comCode Sample Test March 15, 2005 at 10:27 pm#5698Admin
KeymasterYou need to click the button, type the text and then click the button again to close it. Otherwise type it out manually.
I hope this helps.
March 16, 2005 at 1:20 am#5699Cubes
ParticipantQuote (heaven @ Mar. 15 2005,22:27) You need to click the button, type the text and then click the button again to close it. Otherwise type it out manually. I hope this helps.
Thanks a bunch, .heaven!March 16, 2005 at 8:48 am#5702Admin
KeymasterYou can also use regular HTML if you know it.
TEST
March 16, 2005 at 10:59 pm#5708Cubes
ParticipantQuote (heaven @ Mar. 16 2005,08:48) You can also use regular HTML if you know it. TEST
Hi H,I don't know HTML. Is it hard and something I can teach myself, or do I have to know computer programming?
March 19, 2005 at 12:05 am#5735Admin
KeymasterIt's a language that you need to learn. But it's easy enough to learn some formatting for this Forum. I will give some examples in my next post.
March 19, 2005 at 1:53 am#5736Cubes
ParticipantQuote (heaven @ Mar. 19 2005,00:05) It's a language that you need to learn. But it's easy enough to learn some formatting for this Forum. I will give some examples in my next post.
Cool.March 19, 2005 at 10:41 am#5741Admin
KeymasterClosed tags: (requires a closing tag, otherwise the attributes just continues
for the whole post.<marquee>Text scrolls across the page</marquee>
<p> This creates a space between text (paragraph)</p>
< p align=left>Left alignment (standard)</p>
< p align=right>Right alignment.</p>
< p align=justify>Spreadout alignment.</p>
<tt>True type text</tt>
<font color=red>Text is red between the open and closing tags</font>
<Font face=arial>Font is arial</font>
<font face=helvetica size=3 color=green>Font now has 3 attributes</font>
Open tags: (doesn't require a closing tag)
<li>apples
<li>oranges
<li>bananas
<br> This is a line break.
March 19, 2005 at 10:42 am#5742Admin
KeymasterThe code in my last post is rendered by a browser to look like this:
Closed tags: (requires a closing tag, otherwise the attributes just continues for the whole post. Text scrolls across the page
This creates a space between text (paragraph)
Left alignment (standard)
Right alignment.
Spreadout alignment.
True type text
Text is red between the open and closing tags
Font is arial
Font now has 3 attributesOpen tags: (doesn't require a closing tag)
- apples
- oranges
- bananas
This is a line break.