The Mystery, Crime, and Thriller Group discussion
Techno Corner
>
Font changes: bold, italics, underline, strike through (basic markup)
date
newest »
newest »
newest »
The four styles are:
* bold
* italic
* underline
*
strike throughThe language used on many web pages to do this is called HyperText Markup Language or (HTML) which uses "tags" (code letters enclosed in angle brackets < >).
The tags are called "opening tags" and "closing tags" and look like this:
<x> </x>
It's fairly intuitive, and the "codes" for the styles are as follows:
<b> </b> bold
<i> </i> italic
<u> </u> underline
<s> </s>
strike throughThe first thing to remember is that you must surround the text that you want to change with the mark up, in other words: put the opening tag <x> before the text you want to change, and the closing tag </x> after.
If you want to write a sentence in bold font you need to type this:
which will make your sentence look like this:
Just change the 'b' to 'i'
and you get this:
And the tags can be combined:
Which gives you this:
In this case you must be careful not to invert the tags.
They must go in this order:
<b><u>xxx</u></b>
Not like this:
<b><u>xxx</b></u>
If there is something else you would like to learn,
just leave a comment in the "Request List" thread:
Index and Request List <<-- click here