|
USING HTML
|
| Following syntax allows your to customize
your message with styles. It's basically the variation
of HTML codes.
Note:
> Syntax is in red.
> Incorrect code will not lead to any errors
> Use one style at a time. That means
you can do it like this [b][i]Hello![/i][/b],
you have to do it either [b]Hello![/b]
or [i]Hello![/i]
|
|
| Bold |
| Syntax: |
[b]Text
here[/b] |
| Example: |
This is bold text |
| Italic |
| Syntax: |
[i]Text
here[/i] |
| Example: |
This is italic text |
| Underline |
| Syntax: |
[u]Text
here[/u] |
| Example: |
This is underline text |
| URL |
| Syntax: |
[url=URL here]text
here[/url] |
| Example: |
This is hyperlink |
| E-mail |
| Syntax: |
[email]E-mail
address[/email] |
| Example: |
This is e-mail link |
| Image |
| Syntax: |
[img]Image
link here[/img] |
| Example: |
N/A |
| Font
Color |
| Syntax: |
[color=green]Text
here[/color] |
| Example: |
It's green color |
| Marquee |
| Syntax: |
[marquee]Text
here[/marquee] |
| Example: |
|
| Code |
| Syntax: |
[code]Code
here[/code] |
| Example:
|
#include <iostream.h>
int main()
{
cout << "Hello World!";
return 0;
} |