BBCode is a watered down version of HTML, so if you know how that works, it will be a little bit easier to understand HTML.
In BBCode you make bold text like this:
Code:
[b]This is bold text[/b]
HTML is very similar:
Code:
<b>This is bold text</b>
BBCode Link:
Code:
[url=http://www.url.com]Click Here[/url]
HTML Link:
Code:
<a href="http://www.url.com" target=_blank>Click Here</a>
<a> and </a> tags for address. "target=_blank" means the target is new window/new tab. Without that it opens in same window. Like with anything, just start with the basics and you can learn more and more.
