Ben Fogle’s New Web Site

Friday, 13th July 2007

Ben Fogle's New Web Site

We’ve just given Ben Fogle’s web site a re-vamp.

www.benfogle.com

Read the rest of this entry »


Basic HTML Cheat Sheet

Sunday, 30th April 2006

From 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>