|
What Is Quick HTML?
Quick HTML can be used to add formatting to your comments. Quick HTML tags are based upon standard html tags but they are simpler. The ability to user quick html is set by the site staff and you cannot change it.
|
URL Hyper Linking
If you wish to create a link to another website you can do so by simply typing the address into your comment. You may type the address in in two formats as shown:
- www.yournews.com
- http://www.yournews.com
Note the difference is if the address beings with www there is no need to include the http:// (note, addresses beginning in ftp:// or https:// will also be automatically linked).
If you want to include the qHTML code in your post you can do so by entering the following code:
[url]hxxp://www.wtnteam.com[/url]
You may also create a true hyperlink as follows:
[url=hxxp://www.wtnteam.com]Go to the Homepage[/url]
This will create a link like this: Go to the Homepage
|
Email Links
You can create a link to email someone by using the following code:
[email]myname@mydomain.com[/url]
You may also create a true email hyperlink as follows:
[email=myname@mydomain.com]Click here to email me[/email]
This will create a link like this: Click here to email me
|
Adding Images
If you wish to include an image in your comment you may do so by using the following code, note the full address of the images is needed:
[img]http://www.bootdisk.info/images/blue/virtuanews_logo.gif[/img]
You may also create images that are linked to places by combining the [url] and [img] tags as follows:
[url=hxxp://www.wtnteam.com][img]http://www.bootdisk.info/images/blue/virtuanews_logo.gif[/img][/url]
This will create an link like this:
|
Formatting Comments
You may format your messages as you wish to highlight specific bits of text as follows:
[b]some text[/b] will produce some text [i]some text[/i] will produce some text [s]some text[/s] will produce some text [u]some text[/u] will produce some text
You can change the font by using the following tags:
[color=blue]some text[/color] will produce some text - To alter the color of the text change the color after the equals sign [size=14]some text[/size] will produce some text - You may change the size of text by altering the number [font=impact]some text[/font] will produce some text - Alter the font name to change the look of it
You may also combine the effects as you wish:
[size=18][color=blue][u][i]some text[/i][/u][/color][/size] will produce some text
|
Quoting Text
To quote something that has already been posted by something, simply enclose it as follows and it will automatically be indented:
[quote]to be or not to be that is the question[/quote]
|
The Code Tag
If you want to post some code for example javascript, that requires the formatting and blank spaces to be saved enclose it in the [code] tags as shown:
[code] <script type="text/javascript"> for (i=0;i<10;i++) { alert("Hello world!"); </script> [/code]
This will be shown as follows:
Code:
<script type="text/javascript">
for (i=0;i<10;i++) {
alert("Hello world!");
}
</script>
You may also use the tags [html],[sql] and [php] to produce code that is highlighted according to the tag you use.
|