<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><id>tag:htmlcodes.blog.co.uk,2009-11-09:/</id><title>AJ's Building Supplies</title><link rel="self" href="http://htmlcodes.blog.co.uk/feed/atom/posts/"/><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/"/><subtitle>A quick and handy look at various HTML and XHTML tricks you can use in blogs, looking at just what codes can be put in posts or comments. It'll also be a crash test area for experimenting with same. If you want any specific designing for blog, let me know and I'll see what I can do :)</subtitle><generator version="1.0">MokoFeed</generator><updated>2009-11-09T22:50:53+01:00</updated><entry><id>tag:htmlcodes.blog.co.uk,2009-02-05:/2009/02/05/removing-google-from-the-navbar-5514153/</id><title>Removing Google from the Navbar</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2009/02/05/removing-google-from-the-navbar-5514153/"/><author><name>ajnspencer</name></author><published>2009-02-05T17:53:26+01:00</published><updated>2009-02-05T19:00:25+01:00</updated><content type="html">	&lt;p&gt;OK, this may not be of interest to most people but I'm not that bothered at having the Google Searchbox up in my Navbar...&lt;/p&gt;
	&lt;p&gt;So, removing it is as simple as putting this into your CSS section of the blog design:&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;#topnavbar .gsearch {&lt;br&gt;
display:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar .gsubmit {&lt;br&gt;
display:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar #topnavSearch{&lt;br&gt;
display:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#linkSearch fieldset {&lt;br&gt;
display:none&lt;br&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;Bingo, bye, bye Google, altough I'll admit this may not be for some!&lt;/p&gt;
	&lt;p&gt;Oh... and if you're as OCD as me the removal of your Google searchbar will make the bar look a little lopsided... so you can move your "Create new blog|flag blog" section over towards the left to centralise it a little more.&lt;/p&gt;
	&lt;p&gt;The code for that is:&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;#topnavbar #top_blogOptions {&lt;br&gt;
position:absolute;&lt;br&gt;
right:&lt;strong&gt;42%&lt;/strong&gt;;&lt;br&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;Or if you've used the background removal:&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;#topnavbar #top_blogOptions {&lt;br&gt;
position:absolute;&lt;br&gt;
right:&lt;strong&gt;42%&lt;/strong&gt;;&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;Just change the percentage until you're happy with positioning, I found 42% to be right, yours might be different.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2009/02/05/removing-google-from-the-navbar-5514153/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2009-02-05:/2009/02/05/integrating-the-navbar-5513961/</id><title>Integrating the Navbar</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2009/02/05/integrating-the-navbar-5513961/"/><author><name>ajnspencer</name></author><published>2009-02-05T17:49:30+01:00</published><updated>2009-02-05T17:49:30+01:00</updated><content type="html">	&lt;p&gt;In the last couple posts I did the code for changing the text in the Navbar, now I'll show you how to make it integrate better into your blog...&lt;/p&gt;
	&lt;p&gt;To make the dividers, Next Blog arrow and background dissapear you need quite a lot of code, all of which needs to be entered into the CSS section of your blog design...&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;#topnavbar {&lt;br&gt;
border-bottom:none;&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar #linkSearch {&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar #top_blogOptions {&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar #top_userOptions {&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar #top_userOptions a {&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar ul, #topnavbar p, #topnavbar fieldset {&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar li {background:none;}&lt;/p&gt;
	&lt;p&gt;#topnavbar li.last {background:none;}&lt;/p&gt;
	&lt;p&gt;#topnavbar .nextBlog a {&lt;br&gt;
background:none;&lt;br&gt;
}&lt;/p&gt;
	&lt;p&gt;#topnavbar #top_flagBlog ul li {&lt;br&gt;
background-image: none;&lt;br&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;Putting all that into CSS will vanish all the default design elements from the Navbar and make it use your blog design for it's backing.&lt;/p&gt;
	&lt;p&gt;This can be an issue with a very complicated background designs but with simpler ones, should work fine.&lt;/p&gt;
	&lt;p&gt;Remember to double check your font colour to make sure it's readable over the background.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2009/02/05/integrating-the-navbar-5513961/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2009-02-05:/2009/02/05/further-navbar-text-edits-5513806/</id><title>Further Navbar text Edits</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2009/02/05/further-navbar-text-edits-5513806/"/><author><name>ajnspencer</name></author><published>2009-02-05T17:43:37+01:00</published><updated>2009-02-05T17:43:37+01:00</updated><content type="html">	&lt;p&gt;In the previous post I did the code for changing the text colour in the navbar.&lt;/p&gt;
	&lt;p&gt;Now I'll do the code for changing the font and size of the text...&lt;/p&gt;
	&lt;p&gt;If you put this code into the CSS section in your design window it just takes a couple edits to change the font further:&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;#topnavbar * {&lt;br&gt;
font-family:&lt;strong&gt;Arial, Helvetica, sans-serif&lt;/strong&gt;;&lt;br&gt;
font-size:&lt;strong&gt;12px&lt;/strong&gt;;&lt;br&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;To change the font family simply add in the font you wish to use, then select how big you want the font to be by changing the font size attribute.&lt;/p&gt;
	&lt;p&gt;Again this will look out of place if the dividers, arrow and background are in, so the next post will be how to get rid of them!
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2009/02/05/further-navbar-text-edits-5513806/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2009-02-05:/2009/02/05/changing-your-topnavbar-5512342/</id><title>Changing your topnavbar</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2009/02/05/changing-your-topnavbar-5512342/"/><author><name>ajnspencer</name></author><published>2009-02-05T13:45:36+01:00</published><updated>2009-02-05T13:48:13+01:00</updated><content type="html">	&lt;p&gt;At the to of each blog is the header navbar, this can now be changed or removed if you're a Pro user by putting some code into your CSS section in your blog design.&lt;/p&gt;
	&lt;p&gt;To make it vanish altogether simply put:&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;#topnavbar {display:none}&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;But to be honest, the navbar is helpful so you might prefer to just... change it a little.&lt;/p&gt;
	&lt;p&gt;Here's the first of a few little codes to help make it look a bit prettier.&lt;/p&gt;
	&lt;p&gt;&lt;strong&gt;Changing the text colour:&lt;/strong&gt;&lt;/p&gt;
	&lt;p&gt;To change the text colour insert this line:&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;#topnavbar a:link, #topnavbar a:visited {&lt;br&gt;
color:&lt;strong&gt;#b10910&lt;/strong&gt;;&lt;br&gt;
}&lt;/p&gt;&lt;/blockquote&gt;
	&lt;p&gt;Simply change the hex value #b10910 into the value for the colour of your choice... to pick one you like you can go &lt;a href="http://www.colorpicker.com/"&gt;&lt;strong&gt;HERE&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
	&lt;p&gt;This, however, ONLY changes the text colour, not the Next Blog arrows or the dividers... that will come later &lt;img src="/img/smilies/icon_wink.gif" alt=";)" class="middle" border="0"&gt;
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2009/02/05/changing-your-topnavbar-5512342/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2009-01-02:/2009/01/02/code-guide-5311905/</id><title>Code guide...</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2009/01/02/code-guide-5311905/"/><author><name>ajnspencer</name></author><published>2009-01-02T14:04:06+01:00</published><updated>2009-01-02T14:04:06+01:00</updated><content type="html">	&lt;p&gt;Click &lt;a href="http://www.devon-photography.co.uk/coding.txt"&gt;HERE&lt;/a&gt; for a quick guide to entering the codes.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2009/01/02/code-guide-5311905/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2009-01-02:/2009/01/02/new-smily-codes-and-a-few-ascii-entries-5311584/</id><title>New smiley codes and a few ascii entries...</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2009/01/02/new-smily-codes-and-a-few-ascii-entries-5311584/"/><author><name>ajnspencer</name></author><published>2009-01-02T13:00:05+01:00</published><updated>2009-01-02T13:05:52+01:00</updated><content type="html">	&lt;p&gt;OK, Subs just posted her brilliant HTML guide &lt;a href="http://subville.blog.co.uk/2009/01/02/html-for-blog-5310108"&gt;&lt;strong&gt;HERE&lt;/strong&gt;&lt;/a&gt; for smiley codes and extras... and it reminded me I hadn't done a post on here in too long, so heres a couple more extras...&lt;/p&gt;
	&lt;p&gt;Firstly, the locations of all the new smilies available in the new editor, so if you're using the old editor you can put them in with the insert image command or even post them in comments by typing &lt;strong&gt;img src="insert location of smiley here"&lt;/strong&gt; inside triangle brackets, the one's above , and . by the M key.&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/icon_cheeze.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/icon_cheeze.gif"&gt;http://www.blog.co.uk/image/smileys/icon_cheeze.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-cool2.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-cool2.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-cool2.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-cry2.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-cry2.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-cry2.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-embarassed.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-embarassed.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-embarassed.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-foot-in-mouth.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-foot-in-mouth.gif.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-foot-in-mouth.gif.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-frown.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-frown.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-frown.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-innocent.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-innocent.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-innocent.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-kiss.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-kiss.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-kiss.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-laughing.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-laughing.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-laughing.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-money-mouth.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-money-mouth.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-money-mouth.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-sealed.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-sealed.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-sealed.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-smile2.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-smile2.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-smile2.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-surprised2.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-surprised2.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-surprised2.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-tongue-out.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-tongue-out.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-tongue-out.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-undecided.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-undecided.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-undecided.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-wink2.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-wink2.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-wink2.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smiley-yell.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smiley-yell.gif"&gt;http://www.blog.co.uk/image/smileys/smiley-yell.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smileys21.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smileys21.gif"&gt;http://www.blog.co.uk/image/smileys/smileys21.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smileys30.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smileys30.gif"&gt;http://www.blog.co.uk/image/smileys/smileys30.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smileys60.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smileys60.gif"&gt;http://www.blog.co.uk/image/smileys/smileys60.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/smileys77.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/smileys77.gif"&gt;http://www.blog.co.uk/image/smileys/smileys77.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/animesweat.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/animesweat.gif"&gt;http://www.blog.co.uk/image/smileys/animesweat.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/blueeek.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/blueeek.gif"&gt;http://www.blog.co.uk/image/smileys/blueeek.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/rolleyes.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/rolleyes.gif"&gt;http://www.blog.co.uk/image/smileys/rolleyes.gif&lt;/a&gt; &lt;/p&gt;
	&lt;p&gt;&lt;img src="http://www.blog.co.uk/image/smileys/saddrunk.gif" alt=""&gt; = &lt;a href="http://www.blog.co.uk/image/smileys/saddrunk.gif"&gt;http://www.blog.co.uk/image/smileys/saddrunk.gif&lt;/a&gt;&lt;/p&gt;
	&lt;p&gt;Oh, and have some html ascii characters too... simply type the code without the space between the ampersand (&amp;) and text... (PS, the semi colon ; is part of the code.)&lt;/p&gt;
	&lt;p&gt;♠ = &amp; spades;&lt;/p&gt;
	&lt;p&gt;♣ = &amp; clubs;&lt;/p&gt;
	&lt;p&gt;♥ = &amp; hearts;&lt;/p&gt;
	&lt;p&gt;♦ = &amp; diams;&lt;/p&gt;
	&lt;p&gt;© = &amp; copy;&lt;/p&gt;
	&lt;p&gt;• = &amp; bull;&lt;/p&gt;
	&lt;p&gt;† = &amp; dagger;&lt;/p&gt;
	&lt;p&gt;← = &amp; larr; &lt;/p&gt;
	&lt;p&gt;→ = &amp; rarr; &lt;/p&gt;
	&lt;p&gt;↑ = &amp; uarr; &lt;/p&gt;
	&lt;p&gt;↓ = &amp; darr; &lt;/p&gt;
	&lt;p&gt;↔ = &amp; harr;&lt;/p&gt;
	&lt;p&gt;¼ = &amp; frac14;&lt;/p&gt;
	&lt;p&gt;½ = &amp; frac12 &lt;/p&gt;
	&lt;p&gt;¾ = &amp; frac34; &lt;/p&gt;
	&lt;p&gt;And... I'm spent...
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2009/01/02/new-smily-codes-and-a-few-ascii-entries-5311584/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2007-05-06:/2007/05/06/how_to_cure_blogthings_code~2218711/</id><title>How to cure Blogthings code...</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2007/05/06/how_to_cure_blogthings_code~2218711/"/><author><name>ajnspencer</name></author><published>2007-05-06T09:54:02+02:00</published><updated>2007-05-06T09:54:32+02:00</updated><content type="html">	&lt;p&gt;We've all seen the memes from &lt;a href="http://www.blogthings.com/"&gt;Blogthings&lt;/a&gt; and we've all seen the various comments saying "the damn code didn't work".&lt;/p&gt;
	&lt;p&gt;So here it is, the one step trick to fixing most blogthings code...&lt;/p&gt;
	&lt;p&gt;Commas.&lt;/p&gt;
	&lt;p&gt;Yep, that's all it needs, you see HTML uses commas to mark out settings, those commas aren't in the blogthings code so it goes floopy (technical term)&lt;/p&gt;
	&lt;p&gt;So, all you need to do is make your code look like this (with the triangle brackets kept in place replacing the [] I've put in to mark the spots...)&lt;/p&gt;
	&lt;p&gt;[table width='350' align='center' border='0' cellspacing='0' cellpadding='2'][tr][td bgcolor="#96D6C5" align='center']&lt;/p&gt;
	&lt;p&gt;See, like Superman taking out an ad in the Daily Planet telling everyone he's killed by Kryptonite there is my biggest code fixing trick, commas!&lt;/p&gt;
	&lt;p&gt;If you ever do a blogthings remember this post and pass it on! (and not just to get me hits &lt;img src="/img/smilies/icon_wink.gif" alt=";)" class="middle" border="0"&gt;)
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2007/05/06/how_to_cure_blogthings_code~2218711/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-06-16:/2006/06/16/formatting_shortcuts~884958/</id><title>Formatting shortcuts</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/06/16/formatting_shortcuts~884958/"/><author><name>ajnspencer</name></author><published>2006-06-16T07:15:46+02:00</published><updated>2006-06-16T07:15:46+02:00</updated><content type="html">	&lt;p&gt;There are a couple shortcuts to the most used text formatting options.&lt;/p&gt;
	&lt;p&gt;A double asterisk before and after a word replaces the 'strong' command.&lt;/p&gt;
	&lt;p&gt;so * *strong text* * when the spaces are removed becomes &lt;strong&gt;strong text&lt;/strong&gt;.&lt;/p&gt;
	&lt;p&gt;Also a pair of \ marks either side create italicised:&lt;/p&gt;
	&lt;p&gt;\ \italic text\ \ without the spaces becomes &lt;em&gt;italic text&lt;/em&gt;.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/06/16/formatting_shortcuts~884958/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-03-06:/2006/03/06/linking~618879/</id><title>Linking</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/03/06/linking~618879/"/><author><name>ajnspencer</name></author><published>2006-03-06T22:44:42+01:00</published><updated>2006-03-06T22:44:42+01:00</updated><content type="html">	&lt;p&gt;Following on from the last post, another quickie simple one, how to link text etc.&lt;/p&gt;
	&lt;p&gt;Simple wrap whatever you want to link from inside:&lt;/p&gt;
	&lt;p&gt;[a href="SITE"] [/a]
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/03/06/linking~618879/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-03-03:/2006/03/03/linking_from_images~610711/</id><title>Linking from images</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/03/03/linking_from_images~610711/"/><author><name>ajnspencer</name></author><published>2006-03-03T22:20:34+01:00</published><updated>2006-03-03T22:21:48+01:00</updated><content type="html">	&lt;p&gt;Nice simple one this...&lt;/p&gt;
	&lt;p&gt;Added a photo earlier and wanted the photo to link to a website instead of to the blog media page.&lt;/p&gt;
	&lt;p&gt;It's very easy and only needs one change in code, it should even work with images you're importing from another site as well rather than uploading.&lt;/p&gt;
	&lt;p&gt;When you upload it it gives you this as the begining of the code:&lt;/p&gt;
	&lt;p&gt;a href='http://www.blog.co.uk/srv/media/media_item.php?item_ID=397422'&lt;/p&gt;
	&lt;p&gt;So all I did was replace the link with the one from the site I wanted the image to link to...&lt;/p&gt;
	&lt;p&gt;a href='&lt;strong&gt;&lt;a href="http://www.hammacher.com/publish/72824.asp"&gt;http://www.hammacher.com/publish/72824.asp&lt;/a&gt;&lt;/strong&gt;'&lt;/p&gt;
	&lt;p&gt;TA-DA!!!! &lt;img src="/img/smilies/icon_mrgreen.gif" alt=":&gt;&gt;" class="middle" border="0"&gt;
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/03/03/linking_from_images~610711/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-03-01:/2006/03/01/table_colouring~604912/</id><title>Table colouring</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/03/01/table_colouring~604912/"/><author><name>ajnspencer</name></author><published>2006-03-01T22:49:49+01:00</published><updated>2006-03-01T22:52:48+01:00</updated><content type="html">	&lt;p&gt;Inspired by &lt;a href="http://perspicacitycorruption.blog.co.uk/"&gt;Mr G&lt;/a&gt; here's a little look at making multicoloured tables.&lt;/p&gt;
	&lt;p&gt;If you're new it might be an idea to read the previous posts, when you hear THIS noise *BING* it's time to turn the page.&lt;/p&gt;
	&lt;p&gt;Here we look at how to make this...&lt;/p&gt;
	
	
	Top Left
	Top Right
	
	
	Bottom Left
	Bottom Right
	
	
	&lt;p&gt;You KNOW you want to... Now, heres the code we used for the previous table with []s replacing the triangle brackets:&lt;/p&gt;
	&lt;p&gt;[table width="200" border="1" align="center" cellpadding="3" cellspacing="3" bgcolor="#cccccc"]&lt;br&gt;
[tr]&lt;br&gt;
[td]top left[/td]&lt;br&gt;
[td]top right[/td]&lt;br&gt;
[/tr]&lt;br&gt;
[tr]&lt;br&gt;
[td]bottom left[/td]&lt;br&gt;
[td]bottom right[/td]&lt;br&gt;
[/tr]&lt;br&gt;
[/table]&lt;/p&gt;
	&lt;p&gt;To colour a row or individual cells we only need to add one thing, the colour in one of two places.&lt;/p&gt;
	&lt;p&gt;To colour an entire row add it after the tr:&lt;/p&gt;
	&lt;p&gt;[tr bgcolor="#0000FF"]&lt;br&gt;
[td]top left[/td]&lt;br&gt;
[td]top right[/td]&lt;br&gt;
[/tr]&lt;/p&gt;
	&lt;p&gt;To colour an individual cell, place the code in the td area:&lt;/p&gt;
	&lt;p&gt;[tr]&lt;br&gt;
[td bgcolor="#0000FF"]top left[/td]&lt;br&gt;
[td]top right[/td]&lt;br&gt;
[/tr]&lt;/p&gt;
	&lt;p&gt;So the code for our multicoloured table is:&lt;/p&gt;
	&lt;p&gt;[table width="200" border="1" align="center" cellpadding="3" cellspacing="3" bgcolor="#cccccc"]&lt;br&gt;
[tr]&lt;br&gt;
[td bgcolor="#0000FF"]Top Left[/td]&lt;br&gt;
[td bgcolor="#FF0000"]Top Right[/td]&lt;br&gt;
[/tr]&lt;br&gt;
[tr]&lt;br&gt;
[td bgcolor="#FFFF00"]Bottom Left[/td]&lt;br&gt;
[td bgcolor="#00FF00"]Bottom Right[/td]&lt;br&gt;
[/tr]&lt;br&gt;
[/table]&lt;/p&gt;
	&lt;p&gt;Gawd I hope that makes sense...
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/03/01/table_colouring~604912/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-28:/2006/02/28/text_colouring~601837/</id><title>Text colouring</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/28/text_colouring~601837/"/><author><name>ajnspencer</name></author><published>2006-02-28T21:44:13+01:00</published><updated>2006-02-28T21:44:13+01:00</updated><content type="html">	&lt;p&gt;NOTE: Ths isn't for use in comments, just posts and header text.&lt;/p&gt;
	&lt;p&gt;Did you know it's possible to colour your text?&lt;/p&gt;
	&lt;p&gt;Yes it is!&lt;br&gt;
&lt;/p&gt;
	&lt;p&gt;Now, take a look at the post on &lt;a href="http://www.blog.co.uk/index.php/htmlcodes/2006/02/27/font_sizes~598662"&gt;text sizes&lt;/a&gt; because the coding is much the same.&lt;/p&gt;
	&lt;p&gt;[font size="3"][/font] gives a size three font.&lt;/p&gt;
	&lt;p&gt;[font size="3" color="#ff0000"][/font] gives a size three font in red.&lt;/p&gt;
	&lt;p&gt;See, here it is.&lt;/p&gt;
	&lt;p&gt;All colours need to be put in as hexidecimal, to help take a look at &lt;a href="http://www.december.com/html/spec/color.html"&gt;this excellent colour picking site&lt;/a&gt;.&lt;/p&gt;
	&lt;p&gt;A little personal note... Be a little careful with what you colour, red on green, yellow or purple on pink, all can clash and it's a proven fact that some colour combinations make it nigh on impossible for dyslexics or people with a visual impairment to read.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/28/text_colouring~601837/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-28:/2006/02/28/tables_aligning_entries~600640/</id><title>Tables - Aligning entries.</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/28/tables_aligning_entries~600640/"/><author><name>ajnspencer</name></author><published>2006-02-28T15:06:16+01:00</published><updated>2006-02-28T15:07:14+01:00</updated><content type="html">	&lt;p&gt;OK, I promise this is the final one for now to save ALL of us from going insane! (It's taxing my brain writing these, I'l tell ya!)&lt;/p&gt;
	&lt;p&gt;The text in each cell auto aligns to the eft hand side but you can align it to the centre or the right.&lt;/p&gt;
	&lt;p&gt;[tr]&lt;br&gt;
[td]top left[/td]&lt;br&gt;
[td]top right[/td]&lt;br&gt;
[tr]&lt;/p&gt;
	&lt;p&gt;was the top half of the table from my prevoius posts, now lets fiddle the text by adding div code.&lt;/p&gt;
	&lt;p&gt;the way of writing this is to put [div align=left"/"center"/"right"] and [/div] codes before and after the text, with triangular brackets of course. (you're all gonna tell me where to stick my triangular brackets aren't you...)&lt;/p&gt;
	&lt;p&gt;So if we changed that chunk of the code to read...&lt;/p&gt;
	&lt;p&gt;[tr]&lt;br&gt;
[td][div align="center"]top left[/div][/td]&lt;br&gt;
[td][div align="right"]top right[/div][/td]&lt;br&gt;
[tr]&lt;/p&gt;
	&lt;p&gt;We get:&lt;/p&gt;
	
	
	
top left

	
top right

	
	
	bottom left
	bottom right
	
	
	&lt;p&gt;I've lost it haven't I...
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/28/tables_aligning_entries~600640/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-28:/2006/02/28/tables_extras~600600/</id><title>Tables - Extras</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/28/tables_extras~600600/"/><author><name>ajnspencer</name></author><published>2006-02-28T14:50:49+01:00</published><updated>2006-02-28T14:50:49+01:00</updated><content type="html">	&lt;p&gt;There's some extra code you can put in for tables in the very first line.&lt;/p&gt;
	&lt;p&gt;[table border="1"] was our first line but here's some changes we can make, they're all put inside the triangular brackets and with spaces between.&lt;/p&gt;
	&lt;p&gt;Adding width="(number)" can size our table. In a standard table the cells expand and contract to fit the text, this means we can have a table sized how we want. Therefore having&lt;/p&gt;
	&lt;p&gt;[table border=1 width="200"]&lt;/p&gt;
	&lt;p&gt;makes the table:&lt;/p&gt;
	
	
	top left
	top right
	
	
	bottom left
	bottom right
	
	
	&lt;p&gt;we can align the table by adding in align="left"/"right"/"center"&lt;/p&gt;
	&lt;p&gt;So [table width="200" border="1" align="center"] becomes:&lt;/p&gt;
	
	
	top left
	top right
	
	
	bottom left
	bottom right
	
	
	&lt;p&gt;Other codes change the look of the table by:&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;cellpadding="1" - expands the size of the cell around the text.&lt;/li&gt;
	&lt;li&gt;cellspacing="1" - expands the gap between cells.&lt;/li&gt;
	&lt;li&gt;bgcolor="#cccccc" - changes the colour of the table.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;Obviously the numbers and the colour can be changed for personal preference!&lt;/p&gt;
	&lt;p&gt;So, using:&lt;/p&gt;
	&lt;p&gt;[table width="200" border="1" align="center" cellpadding="3" cellspacing="3" bgcolor="#cccccc"] &lt;/p&gt;
	&lt;p&gt;gives us:&lt;/p&gt;
	
	
	top left
	top right
	
	
	bottom left
	bottom right
	
	
	&lt;p&gt;Now, hands up who's still awake and caring... &lt;img src="/img/smilies/graylaugh.gif" alt=":))" class="middle" border="0"&gt;
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/28/tables_extras~600600/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-28:/2006/02/28/tables_simple~600518/</id><title>Tables - simple</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/28/tables_simple~600518/"/><author><name>ajnspencer</name></author><published>2006-02-28T14:21:31+01:00</published><updated>2006-02-28T14:21:31+01:00</updated><content type="html">	&lt;p&gt;OK, bit complicated this one so stick with me and I'm hoping I'll make some sense...&lt;/p&gt;
	&lt;p&gt;It's possible to use standard table codes in your blog to make something like this:&lt;/p&gt;
	
	
	top left
	top right
	
	
	bottom left
	bottom right
	
	
	&lt;p&gt;Now, here's the coding for this but with [] brackets replacing the needed triangle brackets.&lt;/p&gt;
	&lt;p&gt;[table border="1"]&lt;br&gt;
[tr]&lt;br&gt;
[td]top left[/td]&lt;br&gt;
[td]top right[/td]&lt;br&gt;
[/tr]&lt;br&gt;
[tr]&lt;br&gt;
[td]bottom left[/td]&lt;br&gt;
[td]bottom right[/td]&lt;br&gt;
[/tr]&lt;br&gt;
[/table]&lt;/p&gt;
	&lt;p&gt;As you can see, the table starts and ends with (unsurprisingly) the 'table' code then tr gives a table row and td makes a table column.&lt;/p&gt;
	&lt;p&gt;To add a row simply use:&lt;/p&gt;
	&lt;p&gt;[tr]&lt;br&gt;
[/tr]   - again replacing the [] with triangular brackets.&lt;/p&gt;
	&lt;p&gt;Then, between those two add in as many [td][/td]s as you want columns in that row.&lt;/p&gt;
	&lt;p&gt;Border width can obviously be changed to suit your own preferences, I merely added a 1 border to show where the table was.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/28/tables_simple~600518/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-27:/2006/02/27/lines~598862/</id><title>Lines</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/27/lines~598862/"/><author><name>ajnspencer</name></author><published>2006-02-27T22:08:41+01:00</published><updated>2006-02-27T22:08:41+01:00</updated><content type="html">	&lt;p&gt;Here's another quicky&lt;/p&gt;
	&lt;p&gt;hr - surrounded by the triangular brackets of course, gives you:&lt;/p&gt;
	&lt;p&gt;&lt;/p&gt;
	&lt;p&gt;It's a single code like the break, it only needs that one piece of code.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/27/lines~598862/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-27:/2006/02/27/text_codes~598786/</id><title>Text codes.</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/27/text_codes~598786/"/><author><name>ajnspencer</name></author><published>2006-02-27T21:48:46+01:00</published><updated>2006-02-27T21:58:18+01:00</updated><content type="html">	&lt;p&gt;A few handy codes for formatting text.&lt;/p&gt;
	&lt;p&gt;All codes need to be put in in the normal way, inside triangle brackets&lt;/p&gt;
	&lt;p&gt;em - /em = &lt;em&gt;Gives you this&lt;/em&gt;&lt;/p&gt;
	&lt;p&gt;strong - /strong = &lt;strong&gt;Gives you this&lt;/strong&gt;&lt;/p&gt;
	&lt;p&gt;sub - /sub = &lt;sub&gt;Gives you this&lt;/sub&gt;&lt;/p&gt;
	&lt;p&gt;sup - /sup = &lt;sup&gt;Gives you this&lt;/sup&gt;&lt;/p&gt;
	&lt;p&gt;big - /big = &lt;big&gt;Gives you this&lt;/big&gt;&lt;/p&gt;
	&lt;p&gt;small - /small = &lt;small&gt;Gives you this&lt;/small&gt;&lt;/p&gt;
	&lt;p&gt;b - /b = Gives you this&lt;/p&gt;
	&lt;p&gt;i - /i = &lt;i&gt;Gives you this&lt;/i&gt;&lt;/p&gt;
	&lt;p&gt;tt - /tt = &lt;tt&gt;Gives you this&lt;/tt&gt;&lt;/p&gt;
	&lt;p&gt;center - /center = Gives you this&lt;/p&gt;
	&lt;p&gt;ins - /ins = &lt;ins&gt;Gives you this&lt;/ins&gt;&lt;/p&gt;
	&lt;p&gt;s - /s = Gives you this
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/27/text_codes~598786/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-27:/2006/02/27/font_sizes~598662/</id><title>Font Sizes</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/27/font_sizes~598662/"/><author><name>ajnspencer</name></author><published>2006-02-27T21:07:24+01:00</published><updated>2006-03-01T21:41:59+01:00</updated><content type="html">	&lt;p&gt;A post for CJ, although I'm sure he won't mind the rest of you reading &lt;img src="/img/smilies/graylaugh.gif" alt=":))" class="middle" border="0"&gt;&lt;/p&gt;
	&lt;p&gt;You can edit font sizes in your header and in posts (but not comments) by using&lt;/p&gt;
	&lt;p&gt;font size="(number)" &lt;/p&gt;
	&lt;p&gt;and &lt;/p&gt;
	&lt;p&gt;/font &lt;/p&gt;
	&lt;p&gt;bookending the text you want to size.&lt;/p&gt;
	&lt;p&gt;Obviously usual code rules apply to wrap them in triangular brackets.&lt;/p&gt;
	&lt;p&gt;As a clue to sizing 2 is normal font size.&lt;/p&gt;
	&lt;p&gt;The numbers you can add are:&lt;/p&gt;
	&lt;p&gt;1&lt;br&gt;
2&lt;br&gt;
3&lt;br&gt;
4&lt;br&gt;
5&lt;br&gt;
6&lt;br&gt;
7
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/27/font_sizes~598662/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-27:/2006/02/27/a_quicky~598204/</id><title>A quicky</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/27/a_quicky~598204/"/><author><name>ajnspencer</name></author><published>2006-02-27T18:57:28+01:00</published><updated>2006-02-27T19:18:48+01:00</updated><content type="html">	&lt;p&gt;Did you know that you can put breaks in your header text simply by adding the &lt;strong&gt;br&lt;/strong&gt; (line break) or &lt;strong&gt;p&lt;/strong&gt; (paragraph break) command once?&lt;/p&gt;
	&lt;p&gt;It's a one off and doesnt need any second / part.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/27/a_quicky~598204/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-27:/2006/02/27/blockquotes_in_comments~598129/</id><title>Blockquotes in comments.</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/27/blockquotes_in_comments~598129/"/><author><name>ajnspencer</name></author><published>2006-02-27T18:38:41+01:00</published><updated>2006-02-27T19:19:03+01:00</updated><content type="html">	&lt;p&gt;We know we can do a blockquote in a post but you can also do it in a comment.&lt;/p&gt;
	&lt;p&gt;Write 'blockquote' before and after the quote, inside triangular brackets (shift and , or . on a normal keyboard) and with a / preceding the one at the end.&lt;/p&gt;
	&lt;blockquote&gt;&lt;p&gt;To get a blockquote.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/27/blockquotes_in_comments~598129/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry><entry><id>tag:htmlcodes.blog.co.uk,2006-02-27:/2006/02/27/xhtml_codes_lists~598119/</id><title>Lists.</title><link rel="alternate" type="text/html" href="http://htmlcodes.blog.co.uk/2006/02/27/xhtml_codes_lists~598119/"/><author><name>ajnspencer</name></author><published>2006-02-27T18:36:12+01:00</published><updated>2006-03-06T22:45:19+01:00</updated><content type="html">	&lt;p&gt;Ever want to do a list in your blog or a comment? Here's how.&lt;/p&gt;
	&lt;p&gt;&lt;strong&gt;ul and ol:&lt;/strong&gt; lists. ul will give you an unordered (bulleted) list, ol gives and ordered (numbered) list.&lt;/p&gt;
	&lt;p&gt;&lt;strong&gt;li:&lt;/strong&gt; this then sits inside the list to make a list element, it needs to go before and after EACH entry.&lt;/p&gt;
	&lt;p&gt;&lt;em&gt;Example of an unordered list&lt;/em&gt;&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;a&lt;/li&gt;
	&lt;li&gt;b&lt;/li&gt;
	&lt;li&gt;c&lt;/li&gt;
	&lt;li&gt;d&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;&lt;em&gt;Example of an ordered list&lt;/em&gt;&lt;/p&gt;
	&lt;ol&gt;
	&lt;li&gt;a&lt;/li&gt;
	&lt;li&gt;b&lt;/li&gt;
	&lt;li&gt;c&lt;/li&gt;
	&lt;li&gt;d&lt;/li&gt;
	&lt;/ol&gt;
	&lt;p&gt;Click &lt;a href="http://www.nadcaa.org.uk/coding.txt"&gt;HERE&lt;/a&gt; for a quick guide to entering the codes.
&lt;/p&gt;
&lt;p&gt; &lt;small&gt; &lt;a href="http://htmlcodes.blog.co.uk/2006/02/27/xhtml_codes_lists~598119/#comments"&gt;Comments&lt;/a&gt; &lt;/small&gt; &lt;/p&gt;</content></entry></feed>
