Basic HTML Cheat Sheet
Sunday, 30th April 2006From time to time you may need you use basic HTML in your blog, forum or Content Management System (CMS). HTML consists of tags that go before and after the bit of text you want to effect. Here’s a few basic bits of HTML to help you out:
Making text bold
<strong>This text is bold</strong>
Making text italic
<em>This text is italic</em>
Making a link to a page
<a href="http://www.website.com" >This text is a link to website.com</a>
Making a link to a page (open in a new window)
<a href="http://www.website.com" target="_blank" >This text is a link to website.com</a>









