<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dave Woods Freelance Web Designer UK</title>
	<atom:link href="http://www.dave-woods.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.dave-woods.co.uk</link>
	<description></description>
	<lastBuildDate>Wed, 03 Feb 2010 20:45:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using em&#8217;s for font sizing</title>
		<link>http://www.dave-woods.co.uk/index.php/using-ems-for-font-sizing/</link>
		<comments>http://www.dave-woods.co.uk/index.php/using-ems-for-font-sizing/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 20:45:50 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=693</guid>
		<description><![CDATA[Many web designers still use pixels for sizing their fonts within a web page, however this presents an accessibility problem on devices and browsers (namely Internet Explorer) which don&#8217;t allow pixels to be resized. The solution is to use ems or percentages to size the font so that they&#8217;re relative to the base font size [...]]]></description>
			<content:encoded><![CDATA[<p>Many web designers still use pixels for sizing their fonts within a web page, however this presents an accessibility problem on devices and browsers (namely Internet Explorer) which don&#8217;t allow pixels to be resized. The solution is to use ems or percentages to size the font so that they&#8217;re relative to the base font size set within the browser and it&#8217;s really not as difficult as a lot of people might think.</p>
<p><span id="more-693"></span></p>
<h2>What is an em?</h2>
<p>Firstly for anyone that hasn&#8217;t used ems before, here&#8217;s the definition:</p>
<blockquote><p>An em is a unit of measurement in the field of typography. This unit defines the proportion of the letter width and height with respect to the point size of the current font. Originally the unit was derived from the width of the capital &#8220;M&#8221; in a particular typeface. This unit is not defined in terms of any specific typeface, and thus is the same for all fonts at a given point size. So, 1 em in a 16 point typeface is 16 points.</p></blockquote>
<h2>Using ems to set the font size</h2>
<p>There&#8217;s many ways that you can use ems. Personally, I prefer to set the font size so that all HTML elements within the page are consistent and use 10px throughout a website using the following code:</p>
<p><code>body, select, input, textarea {<br />
font: 0.625em/1.4 tahoma, verdana, arial, helvetica, sans-serif;<br />
}</code></p>
<p>This is just the starting point though to reset the font size to a consistent level. The 1.4 sets the line-height and following on from that is the font-family which will change depending on the project but the one thing that is consistent is the 0.625em regardless of the website I&#8217;m working with.</p>
<p>By doing this, it allows me to easily set font sizes for other elements and containers within the site. For example, if I want to set a font size to 12px then I can do so by declaring an em size of 1.2em; If I want 9px, then it&#8217;s 0.9em and so on.</p>
<p>As you can see from the following CSS code, creating font sizes using em values is actually just as easy as using pixels but with the advantage that they can scale regardless of the device or web browser being used:</p>
<p><code>#navigation {<br />
	font-size: 1.4em;<br />
}<br />
h1 {<br />
	font-size: 2.4em;<br />
}<br />
#content {<br />
	font-size: 1.2em;<br />
}</code></p>
<h2>What about inheriting ems</h2>
<p>This causes the biggest confusion for a lot of web designers and is why a lot of people revert back to using pixels. Take the following example:</p>
<p><code>#content {<br />
	font-size: 1.2em;<br />
}<br />
#content p {<br />
	font-size: 1.1em;<br />
}</code></p>
<p>Now, a lot of people might expect that the paragraph would display at 11px given what I explained earlier. However, ems are inherited and therefore the initial 10px would render at 12px due to the #content font value but then assuming that the paragraph is nested within the #content element, it would then be scaled to 1.1em of it&#8217;s initial value and would therefore actually appear larger than 12px.</p>
<p>In order to get around this I use the following chart: <a href="http://aloestudios.com/tools/emchart/">http://aloestudios.com/tools/emchart/</a> to determine which em size I need to use in order to inherit the correct font size.</p>
<p>So in the above example, you&#8217;d need to use the following:</p>
<p><code>#content {<br />
	font-size: 1.2em;<br />
}<br />
#content p {<br />
	font-size: 0.917em; /* this will render at 11px */<br />
}</code></p>
<h2>Summary</h2>
<p>Using ems can take a little getting used to but if you want to create accessible font sizes then it really is the best solution and once you&#8217;ve got the hang of how ems are inherited they&#8217;re a powerful tool.</p>
<p>You can even create truly flexible websites by using ems for entire layouts so that they scale with the users default font setting but I&#8217;ll save that tutorial for another time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/using-ems-for-font-sizing/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Project folder structure for a web designer</title>
		<link>http://www.dave-woods.co.uk/index.php/project-folder-structure-for-a-web-designer/</link>
		<comments>http://www.dave-woods.co.uk/index.php/project-folder-structure-for-a-web-designer/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 17:05:16 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=682</guid>
		<description><![CDATA[I&#8217;ve always been fairly well organised when it comes to projects but up until recently, I haven&#8217;t had a standardised way of structuring my folders which occasionally leads to hunting for that piece of documentation that&#8217;s hiding in a folder buried deep in a directory structure. I&#8217;m now using a method that is consistent across [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been fairly well organised when it comes to projects but up until recently, I haven&#8217;t had a standardised way of structuring my folders which occasionally leads to hunting for that piece of documentation that&#8217;s hiding in a folder buried deep in a directory structure. I&#8217;m now using a method that is consistent across all my projects and thought I&#8217;d share it here in the hope that it helps other web designers to manage their documents and graphics.</p>
<p><span id="more-682"></span></p>
<h2>Document Structure</h2>
<p>First, here&#8217;s the structure and then I&#8217;ll explain what kind of document or graphics I place where:</p>
<ul class="folder-list">
<li>Client Name
<ul>
<li>Project
<ul>
<li>01 &#8211; Consultancy</li>
<li>02 &#8211; Information Architecture</li>
<li>03 &#8211; Content</li>
<li>04 &#8211; Branding
<ul>
<li>Fonts</li>
<li>Guidelines</li>
<li>Logo</li>
</ul>
</li>
<li>05 &#8211; Design
<ul>
<li>Graphics</li>
<li>Stock Photography</li>
</ul>
</li>
<li>06 &#8211; Code</li>
<li>07 &#8211; Marketing
<ul>
<li>Email</li>
<li>SEO</li>
<li>Social Media</li>
</ul>
</li>
<li>08 &#8211; Analytics</li>
<li>09 &#8211; Hosting</li>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>And you can get a copy of this directory structure by downloading my <a href='http://www.dave-woods.co.uk/wp-content/uploads/2010/01/dave-woods-folder-structure.zip'>folder structure zip file</a> so feel free to use it if it applies to your projects.</p>
<h3>Root Level</h3>
<p>At the root level, I create a folder with the name of the client so that within that folder I can organise their work by project. This might not apply to all freelancers but I do work with some design agencies or companies who have a number of different websites so this helps to keep all their work in one place.</p>
<h3>01 &#8211; Consultancy</h3>
<p>This folder is to keep things organised at the beginning of a project and will contain documents like the Proposal and Contract. This may vary from project to project as simple PSD to HTML/CSS work is unlikely to need a proposal.</p>
<h3>02 &#8211; Information Architecture</h3>
<p>In most cases this simply includes a single document which contains the structure of the website, usually in an unordered list which would represent the site map. </p>
<h3>03 &#8211; Content</h3>
<p>If I&#8217;m going to be responsible for adding the content then this is where it all lives until it&#8217;s added to the website. Once the Information Architecture has been defined, I&#8217;d usually create a separate folder for each section of the site to keep things organised.</p>
<h3>04 &#8211; Branding</h3>
<p>This is where I like to keep all the files received by the client when discussing ideas about the look and feel of the site. So any fonts, branding guidelines or logo&#8217;s that the client currently has are dropped in here.</p>
<h3>05 &#8211; Design</h3>
<p>This is usually the folder that contains the initial bulk of the project work by myself. The graphic folder contained within here is where any creative work that I design live (including PSD layouts or wireframes).</p>
<h3>06 &#8211; Code</h3>
<p>The Code folder is usually where the final deliverable lives and is where all the HTML, CSS, JavaScript and PHP is organised and turned into a full working website.</p>
<h3>07 &#8211; Marketing</h3>
<p>Not applicable to all projects but occasionally there is a further requirement from a marketing perspective. This could be in the form of HTML email newsletters, SEO work or Social Media Marketing. The SEO folder that lives within here also contains an Analysis, Keyword Research and Link Building folder to keep other documents organised within the SEO process.</p>
<h3>08 &#8211; Analytics</h3>
<p>I&#8217;ve not actually used this as of yet but thought it would be handy for any landing page optimisation work and documentation and am sure that it&#8217;ll be of use on future projects that I&#8217;ve got lined up.</p>
<h3>09 &#8211; Hosting</h3>
<p>The hosting folder is purely for documentation and contains any information regarding the clients hosting details. For example, what domains they have, when they expire, what email addresses they have registered with these accounts, billing information etc.</p>
<h2>Summary</h2>
<p>I&#8217;m sure that as other pieces of work arrive, there will be things that I hadn&#8217;t thought of and I&#8217;ll need to adapt the structure a little but I think this provides a good starting point for a project.</p>
<p>I&#8217;d be interested to hear how other people organise their documents, images and code so please feel free to post any comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/project-folder-structure-for-a-web-designer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>HTML Escape Characters</title>
		<link>http://www.dave-woods.co.uk/index.php/html-escape-characters/</link>
		<comments>http://www.dave-woods.co.uk/index.php/html-escape-characters/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 11:00:30 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=679</guid>
		<description><![CDATA[Whenever I&#8217;m creating an HTML page and have a need to use a character that needs escaping (which is less common than the &#38; or &#169;) I have to go hunting for a list of HTML escape characters so I&#8217;ve put together this article as a quick reference of all the character codes and entity [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever I&#8217;m creating an HTML page and have a need to use a character that needs escaping (which is less common than the &amp; or &copy;) I have to go hunting for a list of HTML escape characters so I&#8217;ve put together this article as a quick reference of all the character codes and entity names that you can use within HTML.</p>
<p><span id="more-679"></span></p>
<p>Please feel free to bookmark this page and use it whenever you need a quick reference for any HTML escape characters.</p>
<table class="article-table">
<tr>
<th scope="col">Symbol</th>
<th scope="col">Code</th>
<th scope="col">Entity Name</th>
</tr>
<tr>
<td>&#8482;</td>
<td>&amp;#8482;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&euro;</td>
<td>&nbsp;</td>
<td>&amp;euro;</td>
</tr>
<tr>
<td>Space</td>
<td>&amp;#32;</td>
<td>&amp;nbsp;</td>
</tr>
<tr>
<td>&#33;</td>
<td>&amp;#33;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#8220;</td>
<td>&amp;#34;</td>
<td>&amp;quot;</td>
</tr>
<tr>
<td>&#35;</td>
<td>&amp;#35;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#36;</td>
<td>&amp;#36;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#37;</td>
<td>&amp;#37;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&amp;</td>
<td>&amp;#38;</td>
<td>&amp;amp;</td>
</tr>
<tr>
<td>&#39;</td>
<td>&amp;#39;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#40;</td>
<td>&amp;#40;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#41;</td>
<td>&amp;#41;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#42;</td>
<td>&amp;#42;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#43;</td>
<td>&amp;#43;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#44;</td>
<td>&amp;#44;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#45;</td>
<td>&amp;#45;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#46;</td>
<td>&amp;#46;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#47;</td>
<td>&amp;#47;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#48;</td>
<td>&amp;#48;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#49;</td>
<td>&amp;#49;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#50;</td>
<td>&amp;#50;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#51;</td>
<td>&amp;#51;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#52;</td>
<td>&amp;#52;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#53;</td>
<td>&amp;#53;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#54;</td>
<td>&amp;#54;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#55;</td>
<td>&amp;#55;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#56;</td>
<td>&amp;#56;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#57;</td>
<td>&amp;#57;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#58;</td>
<td>&amp;#58;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#59;</td>
<td>&amp;#59;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#60;</td>
<td>&amp;#60;</td>
<td>&amp;lt;</td>
</tr>
<tr>
<td>&#61;</td>
<td>&amp;#61;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#62;</td>
<td>&amp;#62;</td>
<td>&amp;gt;</td>
</tr>
<tr>
<td>&#63;</td>
<td>&amp;#63;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#64;</td>
<td>&amp;#64;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#65;</td>
<td>&amp;#65;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#66;</td>
<td>&amp;#66;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#67;</td>
<td>&amp;#67;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#68;</td>
<td>&amp;#68;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#69;</td>
<td>&amp;#69;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#70;</td>
<td>&amp;#70;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#71;</td>
<td>&amp;#71;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#72;</td>
<td>&amp;#72;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#73;</td>
<td>&amp;#73;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#74;</td>
<td>&amp;#74;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#75;</td>
<td>&amp;#75;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#76;</td>
<td>&amp;#76;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#77;</td>
<td>&amp;#77;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#78;</td>
<td>&amp;#78;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#79;</td>
<td>&amp;#79;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#80;</td>
<td>&amp;#80;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#81;</td>
<td>&amp;#81;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#82;</td>
<td>&amp;#82;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#83;</td>
<td>&amp;#83;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#84;</td>
<td>&amp;#84;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#85;</td>
<td>&amp;#85;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#86;</td>
<td>&amp;#86;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#87;</td>
<td>&amp;#87;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#88;</td>
<td>&amp;#88;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#89;</td>
<td>&amp;#89;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#90;</td>
<td>&amp;#90;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#91;</td>
<td>&amp;#91;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#92;</td>
<td>&amp;#92;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#93;</td>
<td>&amp;#93;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#94;</td>
<td>&amp;#94;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#95;</td>
<td>&amp;#95;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#96;</td>
<td>&amp;#96;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#97;</td>
<td>&amp;#97;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#98;</td>
<td>&amp;#98;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#99;</td>
<td>&amp;#99;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#100;</td>
<td>&amp;#100;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#101;</td>
<td>&amp;#101;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#102;</td>
<td>&amp;#102;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#103;</td>
<td>&amp;#103;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#104;</td>
<td>&amp;#104;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#105;</td>
<td>&amp;#105;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#106;</td>
<td>&amp;#106;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#107;</td>
<td>&amp;#107;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#108;</td>
<td>&amp;#108;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#109;</td>
<td>&amp;#109;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#110;</td>
<td>&amp;#110;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#111;</td>
<td>&amp;#111;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#112;</td>
<td>&amp;#112;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#113;</td>
<td>&amp;#113;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#114;</td>
<td>&amp;#114;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#115;</td>
<td>&amp;#115;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#116;</td>
<td>&amp;#116;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#117;</td>
<td>&amp;#117;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#118;</td>
<td>&amp;#118;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#119;</td>
<td>&amp;#119;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#120;</td>
<td>&amp;#120;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#121;</td>
<td>&amp;#121;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#122;</td>
<td>&amp;#122;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#123;</td>
<td>&amp;#123;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#124;</td>
<td>&amp;#124;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#125;</td>
<td>&amp;#125;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#126;</td>
<td>&amp;#126;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Non-breaking space</td>
<td>&amp;#160;</td>
<td>&amp;nbsp;</td>
</tr>
<tr>
<td>&#161;</td>
<td>&amp;#161;</td>
<td>&amp;iexcl;</td>
</tr>
<tr>
<td>&#162;</td>
<td>&amp;#162;</td>
<td>&amp;cent;</td>
</tr>
<tr>
<td>&#163;</td>
<td>&amp;#163;</td>
<td>&amp;pound;</td>
</tr>
<tr>
<td>&#164;</td>
<td>&amp;#164;</td>
<td>&amp;curren;</td>
</tr>
<tr>
<td>&#165;</td>
<td>&amp;#165;</td>
<td>&amp;yen;</td>
</tr>
<tr>
<td>&#166;</td>
<td>&amp;#166;</td>
<td>&amp;brvbar;</td>
</tr>
<tr>
<td>&#167;</td>
<td>&amp;#167;</td>
<td>&amp;sect;</td>
</tr>
<tr>
<td>&#168;</td>
<td>&amp;#168;</td>
<td>&amp;uml;</td>
</tr>
<tr>
<td>&#169;</td>
<td>&amp;#169;</td>
<td>&amp;copy;</td>
</tr>
<tr>
<td>&#170;</td>
<td>&amp;#170;</td>
<td>&amp;ordf;</td>
</tr>
<tr>
<td>&#171;</td>
<td>&amp;#171;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#172;</td>
<td>&amp;#172;</td>
<td>&amp;not;</td>
</tr>
<tr>
<td>&#173;</td>
<td>&amp;#173;</td>
<td>&amp;shy;</td>
</tr>
<tr>
<td>&#174;</td>
<td>&amp;#174;</td>
<td>&amp;reg;</td>
</tr>
<tr>
<td>&#175;</td>
<td>&amp;#175;</td>
<td>&amp;macr;</td>
</tr>
<tr>
<td>&#176;</td>
<td>&amp;#176;</td>
<td>&amp;deg;</td>
</tr>
<tr>
<td>&#177;</td>
<td>&amp;#177;</td>
<td>&amp;plusmn;</td>
</tr>
<tr>
<td>&#178;</td>
<td>&amp;#178;</td>
<td>&amp;sup2;</td>
</tr>
<tr>
<td>&#179;</td>
<td>&amp;#179;</td>
<td>&amp;sup3;</td>
</tr>
<tr>
<td>&#180;</td>
<td>&amp;#180;</td>
<td>&amp;acute;</td>
</tr>
<tr>
<td>&#181;</td>
<td>&amp;#181;</td>
<td>&amp;micro;</td>
</tr>
<tr>
<td>&#182;</td>
<td>&amp;#182;</td>
<td>&amp;para;</td>
</tr>
<tr>
<td>&#183;</td>
<td>&amp;#183;</td>
<td>&amp;middot;</td>
</tr>
<tr>
<td>&#184;</td>
<td>&amp;#184;</td>
<td>&amp;cedil;</td>
</tr>
<tr>
<td>&#185;</td>
<td>&amp;#185;</td>
<td>&amp;sup1;</td>
</tr>
<tr>
<td>&#186;</td>
<td>&amp;#186;</td>
<td>&amp;ordm;</td>
</tr>
<tr>
<td>&#187;</td>
<td>&amp;#187;</td>
<td>&amp;raquo;</td>
</tr>
<tr>
<td>&#188;</td>
<td>&amp;#188;</td>
<td>&amp;frac14;</td>
</tr>
<tr>
<td>&#189;</td>
<td>&amp;#189;</td>
<td>&amp;frac12;</td>
</tr>
<tr>
<td>&#190;</td>
<td>&amp;#190;</td>
<td>&amp;frac34;</td>
</tr>
<tr>
<td>&#191;</td>
<td>&amp;#191;</td>
<td>&amp;iquest;</td>
</tr>
<tr>
<td>&#192;</td>
<td>&amp;#192;</td>
<td>&amp;Agrave;</td>
</tr>
<tr>
<td>&#193;</td>
<td>&amp;#193;</td>
<td>&amp;Aacute;</td>
</tr>
<tr>
<td>&#194;</td>
<td>&amp;#194;</td>
<td>&amp;Acirc;</td>
</tr>
<tr>
<td>&#195;</td>
<td>&amp;#195;</td>
<td>&amp;Atilde;</td>
</tr>
<tr>
<td>&#196;</td>
<td>&amp;#196;</td>
<td>&amp;Auml;</td>
</tr>
<tr>
<td>&#197;</td>
<td>&amp;#197</td>
<td>&amp;Aring;</td>
</tr>
<tr>
<td>&#198;</td>
<td>&amp;#198;</td>
<td>&amp;AElig;</td>
</tr>
<tr>
<td>&#199;</td>
<td>&amp;#199;</td>
<td>&amp;Ccedil;</td>
</tr>
<tr>
<td>&#200;</td>
<td>&amp;#200;</td>
<td>&amp;Egrave;</td>
</tr>
<tr>
<td>&#201;</td>
<td>&amp;#201;</td>
<td>&amp;Eacute;</td>
</tr>
<tr>
<td>&#202;</td>
<td>&amp;#202;</td>
<td>&amp;Ecirc;</td>
</tr>
<tr>
<td>&#203;</td>
<td>&amp;#203;</td>
<td>&amp;Euml;</td>
</tr>
<tr>
<td>&#204;</td>
<td>&amp;#204;</td>
<td>&amp;Igrave;</td>
</tr>
<tr>
<td>&#205;</td>
<td>&amp;#205;</td>
<td>&amp;Iacute;</td>
</tr>
<tr>
<td>&#206;</td>
<td>&amp;#206;</td>
<td>&amp;Icirc;</td>
</tr>
<tr>
<td>&#207;</td>
<td>&amp;#207;</td>
<td>&amp;Iuml;</td>
</tr>
<tr>
<td>&#208;</td>
<td>&amp;#208;</td>
<td>&amp;ETH;</td>
</tr>
<tr>
<td>&#209;</td>
<td>&amp;#209;</td>
<td>&amp;Ntilde;</td>
</tr>
<tr>
<td>&#210;</td>
<td>&amp;#210;</td>
<td>&amp;Ograve;</td>
</tr>
<tr>
<td>&#211;</td>
<td>&amp;#211;</td>
<td>&amp;Oacute;</td>
</tr>
<tr>
<td>&#212;</td>
<td>&amp;#212;</td>
<td>&amp;Ocirc;</td>
</tr>
<tr>
<td>&#213;</td>
<td>&amp;#213;</td>
<td>&amp;Otilde;</td>
</tr>
<tr>
<td>&#214;</td>
<td>&amp;#214;</td>
<td>&amp;Ouml;</td>
</tr>
<tr>
<td>&#215;</td>
<td>&amp;#215;</td>
<td>&amp;times;</td>
</tr>
<tr>
<td>&#216;</td>
<td>&amp;#216;</td>
<td>&amp;Oslash;</td>
</tr>
<tr>
<td>&#217;</td>
<td>&amp;#217;</td>
<td>&amp;Ugrave;</td>
</tr>
<tr>
<td>&#218;</td>
<td>&amp;#218;</td>
<td>&amp;Uacute;</td>
</tr>
<tr>
<td>&#219;</td>
<td>&amp;#219;</td>
<td>&amp;Ucirc;</td>
</tr>
<tr>
<td>&#220;</td>
<td>&amp;#220;</td>
<td>&amp;Uuml;</td>
</tr>
<tr>
<td>&#221;</td>
<td>&amp;#221;</td>
<td>&amp;Yacute;</td>
</tr>
<tr>
<td>&#222;</td>
<td>&amp;#222;</td>
<td>&amp;THORN;</td>
</tr>
<tr>
<td>&#223;</td>
<td>&amp;#223;</td>
<td>&amp;szlig;</td>
</tr>
<tr>
<td>&#224;</td>
<td>&amp;#224;</td>
<td>&amp;agrave;</td>
</tr>
<tr>
<td>&#225;</td>
<td>&amp;#225;</td>
<td>&amp;aacute;</td>
</tr>
<tr>
<td>&#226;</td>
<td>&amp;#226;</td>
<td>&amp;acirc;</td>
</tr>
<tr>
<td>&#227;</td>
<td>&amp;#227;</td>
<td>&amp;atilde;</td>
</tr>
<tr>
<td>&#228;</td>
<td>&amp;#228;</td>
<td>&amp;auml;</td>
</tr>
<tr>
<td>&#229;</td>
<td>&amp;#229;</td>
<td>&amp;aring;</td>
</tr>
<tr>
<td>&#230;</td>
<td>&amp;#230;</td>
<td>&amp;aelig;</td>
</tr>
<tr>
<td>&#231;</td>
<td>&amp;#231;</td>
<td>&amp;ccedil;</td>
</tr>
<tr>
<td>&#232;</td>
<td>&amp;#232;</td>
<td>&amp;egrave;</td>
</tr>
<tr>
<td>&#233;</td>
<td>&amp;#233;</td>
<td>&amp;eacute;</td>
</tr>
<tr>
<td>&#234;</td>
<td>&amp;#234;</td>
<td>&amp;ecirc;</td>
</tr>
<tr>
<td>&#235;</td>
<td>&amp;#235;</td>
<td>&amp;euml;</td>
</tr>
<tr>
<td>&#236;</td>
<td>&amp;#236;</td>
<td>&amp;igrave;</td>
</tr>
<tr>
<td>&#237;</td>
<td>&amp;#237</td>
<td>&amp;iacute;</td>
</tr>
<tr>
<td>&#238;</td>
<td>&amp;#238;</td>
<td>&amp;icirc;</td>
</tr>
<tr>
<td>&#239;</td>
<td>&amp;#239;</td>
<td>&amp;iuml;</td>
</tr>
<tr>
<td>&#240;</td>
<td>&amp;#240;</td>
<td>&amp;eth;</td>
</tr>
<tr>
<td>&#241;</td>
<td>&amp;#241;</td>
<td>&amp;ntilde;</td>
</tr>
<tr>
<td>&#242;</td>
<td>&amp;#242;</td>
<td>&amp;ograve;</td>
</tr>
<tr>
<td>&#243;</td>
<td>&amp;#243;</td>
<td>&amp;oacute;</td>
</tr>
<tr>
<td>&#244;</td>
<td>&amp;#244;</td>
<td>&amp;ocirc;</td>
</tr>
<tr>
<td>&#245;</td>
<td>&amp;#245;</td>
<td>&amp;otilde;</td>
</tr>
<tr>
<td>&#246;</td>
<td>&amp;#246;</td>
<td>&amp;ouml;</td>
</tr>
<tr>
<td>&#247;</td>
<td>&amp;#247;</td>
<td>&amp;divide;</td>
</tr>
<tr>
<td>&#248;</td>
<td>&amp;#248;</td>
<td>&amp;oslash;</td>
</tr>
<tr>
<td>&#249;</td>
<td>&amp;#249;</td>
<td>&amp;ugrave;</td>
</tr>
<tr>
<td>&#250;</td>
<td>&amp;#250;</td>
<td>&amp;uacute;</td>
</tr>
<tr>
<td>&#251;</td>
<td>&amp;#251;</td>
<td>&amp;ucirc;</td>
</tr>
<tr>
<td>&#252;</td>
<td>&amp;#252;</td>
<td>&amp;uuml;</td>
</tr>
<tr>
<td>&#253;</td>
<td>&amp;#253;</td>
<td>&amp;yacute;</td>
</tr>
<tr>
<td>&#254;</td>
<td>&amp;#254;</td>
<td>&amp;thorn;</td>
</tr>
<tr>
<td>&#255;</td>
<td>&amp;#255;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#256;</td>
<td>&amp;#256;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#257;</td>
<td>&amp;#257;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#258;</td>
<td>&amp;#258;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#259;</td>
<td>&amp;#259;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#260;</td>
<td>&amp;#260;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#261;</td>
<td>&amp;#261;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#262;</td>
<td>&amp;#262;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#263;</td>
<td>&amp;#263;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#264;</td>
<td>&amp;#264;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#265;</td>
<td>&amp;#265;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#266;</td>
<td>&amp;#266;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#267;</td>
<td>&amp;#267;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#268;</td>
<td>&amp;#268;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#269;</td>
<td>&amp;#269;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#270;</td>
<td>&amp;#270;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#271;</td>
<td>&amp;#271;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#272;</td>
<td>&amp;#272;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#273;</td>
<td>&amp;#273;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#274;</td>
<td>&amp;#274;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#275;</td>
<td>&amp;#275;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#276;</td>
<td>&amp;#276;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#277;</td>
<td>&amp;#277</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#278;</td>
<td>&amp;#278;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#279;</td>
<td>&amp;#279;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#280;</td>
<td>&amp;#280;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#281;</td>
<td>&amp;#281;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#282;</td>
<td>&amp;#282;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#283;</td>
<td>&amp;#283;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#284;</td>
<td>&amp;#284;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#285;</td>
<td>&amp;#285;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#286;</td>
<td>&amp;#286;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#287;</td>
<td>&amp;#287;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#288;</td>
<td>&amp;#288;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#289;</td>
<td>&amp;#289;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#290;</td>
<td>&amp;#290;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#291;</td>
<td>&amp;#291;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#292;</td>
<td>&amp;#292;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#293;</td>
<td>&amp;#293;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#294;</td>
<td>&amp;#294;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#295;</td>
<td>&amp;#295;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#296;</td>
<td>&amp;#296;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#297;</td>
<td>&amp;#297;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#298;</td>
<td>&amp;#298;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#299;</td>
<td>&amp;#299;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#300;</td>
<td>&amp;#300;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#301;</td>
<td>&amp;#301;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#302;</td>
<td>&amp;#302;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#303;</td>
<td>&amp;#303;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#304;</td>
<td>&amp;#304;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#305;</td>
<td>&amp;#305;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#306;</td>
<td>&amp;#306;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#307;</td>
<td>&amp;#307;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#308;</td>
<td>&amp;#308;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#309;</td>
<td>&amp;#309;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#310;</td>
<td>&amp;#310;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#311;</td>
<td>&amp;#311;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#312;</td>
<td>&amp;#312;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#313;</td>
<td>&amp;#313;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#314;</td>
<td>&amp;#314;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#315;</td>
<td>&amp;#315;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#316;</td>
<td>&amp;#316;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#317;</td>
<td>&amp;#317</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#318;</td>
<td>&amp;#318;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#319;</td>
<td>&amp;#319;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#320;</td>
<td>&amp;#320;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#321;</td>
<td>&amp;#321;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#322;</td>
<td>&amp;#322;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#323;</td>
<td>&amp;#323;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#324;</td>
<td>&amp;#324;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#325;</td>
<td>&amp;#325;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#326;</td>
<td>&amp;#326;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#327;</td>
<td>&amp;#327;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#328;</td>
<td>&amp;#328;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#329;</td>
<td>&amp;#329;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#330;</td>
<td>&amp;#330;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#331;</td>
<td>&amp;#331;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#332;</td>
<td>&amp;#332;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#333;</td>
<td>&amp;#333;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#334;</td>
<td>&amp;#334;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#335;</td>
<td>&amp;#335;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#336;</td>
<td>&amp;#336;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#337;</td>
<td>&amp;#337;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#338;</td>
<td>&amp;#338;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#339;</td>
<td>&amp;#339;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#340;</td>
<td>&amp;#340;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#341;</td>
<td>&amp;#341;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#342;</td>
<td>&amp;#342;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#343;</td>
<td>&amp;#343;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#344;</td>
<td>&amp;#344;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#345;</td>
<td>&amp;#345;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#346;</td>
<td>&amp;#346;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#347;</td>
<td>&amp;#347;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#348;</td>
<td>&amp;#348;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#349;</td>
<td>&amp;#349;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#350;</td>
<td>&amp;#350;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#351;</td>
<td>&amp;#351;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#352;</td>
<td>&amp;#352;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#353;</td>
<td>&amp;#353;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#354;</td>
<td>&amp;#354;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#355;</td>
<td>&amp;#355;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#356;</td>
<td>&amp;#356;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#357;</td>
<td>&amp;#357</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#358;</td>
<td>&amp;#358;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#359;</td>
<td>&amp;#359;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#360;</td>
<td>&amp;#360;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#361;</td>
<td>&amp;#361;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#362;</td>
<td>&amp;#362;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#363;</td>
<td>&amp;#363;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#364;</td>
<td>&amp;#364;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#365;</td>
<td>&amp;#365;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#366;</td>
<td>&amp;#366;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#367;</td>
<td>&amp;#367;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#368;</td>
<td>&amp;#368;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#369;</td>
<td>&amp;#369;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#370;</td>
<td>&amp;#370;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#371;</td>
<td>&amp;#371;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#372;</td>
<td>&amp;#372;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#373;</td>
<td>&amp;#373;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#374;</td>
<td>&amp;#374;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#375;</td>
<td>&amp;#375;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#376;</td>
<td>&amp;#376;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#377;</td>
<td>&amp;#377;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#378;</td>
<td>&amp;#378;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#379;</td>
<td>&amp;#379;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#380;</td>
<td>&amp;#380;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#381;</td>
<td>&amp;#381;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#382;</td>
<td>&amp;#382;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#383;</td>
<td>&amp;#383;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#340;</td>
<td>&amp;#340;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#341;</td>
<td>&amp;#341;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#342;</td>
<td>&amp;#342;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#343;</td>
<td>&amp;#343;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#344;</td>
<td>&amp;#344;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#345;</td>
<td>&amp;#345;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#346;</td>
<td>&amp;#346;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#347;</td>
<td>&amp;#347;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#348;</td>
<td>&amp;#348;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#349;</td>
<td>&amp;#349;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#350;</td>
<td>&amp;#350;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#351;</td>
<td>&amp;#351;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#352;</td>
<td>&amp;#352;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#353;</td>
<td>&amp;#353;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#354;</td>
<td>&amp;#354;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#355;</td>
<td>&amp;#355;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#356;</td>
<td>&amp;#356;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#357;</td>
<td>&amp;#577;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#358;</td>
<td>&amp;#358;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#359;</td>
<td>&amp;#359;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#360;</td>
<td>&amp;#360;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#361;</td>
<td>&amp;#361;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#362;</td>
<td>&amp;#362;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#363;</td>
<td>&amp;#363;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#364;</td>
<td>&amp;#364;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#365;</td>
<td>&amp;#365;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#366;</td>
<td>&amp;#366;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#367;</td>
<td>&amp;#367;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#368;</td>
<td>&amp;#368;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#369;</td>
<td>&amp;#369;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#370;</td>
<td>&amp;#370;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#371;</td>
<td>&amp;#371;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#372;</td>
<td>&amp;#372;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#373;</td>
<td>&amp;#373;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#374;</td>
<td>&amp;#374;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#375;</td>
<td>&amp;#375;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#376;</td>
<td>&amp;#376;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#377;</td>
<td>&amp;#377</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#378;</td>
<td>&amp;#378;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#379;</td>
<td>&amp;#379;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#380;</td>
<td>&amp;#380;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#381;</td>
<td>&amp;#381;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#382;</td>
<td>&amp;#382;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&#383;</td>
<td>&amp;#383;</td>
<td>&nbsp;</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/html-escape-characters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using CSS3 Selectors in Internet Explorer</title>
		<link>http://www.dave-woods.co.uk/index.php/using-css3-selectors-in-internet-explorer/</link>
		<comments>http://www.dave-woods.co.uk/index.php/using-css3-selectors-in-internet-explorer/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 13:40:05 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=673</guid>
		<description><![CDATA[CSS3 is the next big thing to really help during the web development process but any web developer that has been following the progress of CSS3 will have become increasingly frustrated at the lack of support from Internet Explorer. However Keith Clark has put together a clever solution which means you can start using some [...]]]></description>
			<content:encoded><![CDATA[<p>CSS3 is the next big thing to really help during the web development process but any web developer that has been following the progress of CSS3 will have become increasingly frustrated at the lack of support from Internet Explorer. However Keith Clark has put together a clever solution which means you can start using some of the selectors now and they&#8217;ll even work in Internet Explorer 5 and upwards.</p>
<p><span id="more-673"></span></p>
<p>Keith has put together an ie.css3.js file which allows Internet Explorer to identify CSS3 pseudo selectors and render any style rules defined within them. You simply need to include his <a href="http://www.keithclark.co.uk/labs/ie-css3/">ie.css.js</a> and the <a href="http://www.domassistant.com/">DOMAssistant</a> JavaScript file within the head of your pages for it to work.</p>
<h2>Supported Selectors</h2>
<ul>
<li>&#58;nth-child</li>
<li>&#58;nth-last-child</li>
<li>&#58;nth-of-type</li>
<li>&#58;nth-last-of-type</li>
<li>&#58;first-child</li>
<li>&#58;last-child</li>
<li>&#58;only-child</li>
<li>&#58;first-of-type</li>
<li>&#58;only-of-type</li>
<li>&#58;empty</li>
</ul>
<p>There are some limitations which Keith Clark explains on the <a href="http://www.keithclark.co.uk/labs/ie-css3/">ie-css.js website</a> but it does look very promising.</p>
<p>It&#8217;ll  be interesting to see how Keith continues to develop ie-css3.js as there are lots of other aspects of CSS3 which a lot of web developers are crying out for (rounded corners and multiple background being among my top priorities).</p>
<p>My only reservation is really from an accessibility point of view as developers need to be careful that they&#8217;re not excluding any users who don&#8217;t have JavaScript available from viewing the design of a web page. If it&#8217;s used in such a way that it can be done as progressive enhancement though then I&#8217;m all for it and along with the <a href="http://www.dave-woods.co.uk/index.php/html5-tutorial-getting-started/">HTML5 JavaScript file</a> we might actually start being able to make use of CSS3 and HTML5 before Microsoft catch up with the other standards compliant browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/using-css3-selectors-in-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Dave-Woods.co.uk Redesign</title>
		<link>http://www.dave-woods.co.uk/index.php/dave-woods-co-uk-redesign/</link>
		<comments>http://www.dave-woods.co.uk/index.php/dave-woods-co-uk-redesign/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 17:37:36 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/?p=667</guid>
		<description><![CDATA[It&#8217;s been long overdue but the redesign of my personal website was finally live this evening. I&#8217;ve been so busy with client work that my own work had to take a bit of a back seat but my portfolio was extremely out of date and as the site was using an existing Wordpress theme it [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been long overdue but the redesign of my personal website was finally live this evening. I&#8217;ve been so busy with client work that my own work had to take a bit of a back seat but my portfolio was extremely out of date and as the site was using an existing Wordpress theme it lacked that personal touch that I like to give all my work so over the Christmas period I made an extra effort to bring it up to date.<br />
<span id="more-667"></span></p>
<h2>Logo</h2>
<p>I was always a fan of <a href="http://en.wikipedia.org/wiki/Danger_Mouse_%28TV_series%29">Dangermouse</a> as a kid so to add a bit of fun to the logo, I decided to base the lettering on his logo. I wanted to make sure that the branding of the logo was still recognisable to my existing clients though so the font for the actual text is consistent with the logo that I&#8217;ve been using on letterheads and invoices so that it would be easy to establish that the site is still run by the same person.</p>
<h2>Branding and Design</h2>
<p>The design is based on an existing wordpress theme but I&#8217;ve taken apart the CSS and completely restyled the site so that it&#8217;s unique. I&#8217;ve also continued to use the green style which existed on my old site to try and retain some of the brand so that it hopefully still feels familiar to my regular visitors.</p>
<h2>Content</h2>
<p>The content itself was the main area that I really wanted to focus on as a lot of emphasis was previously put on the blog and articles which I got a lot of great feedback from but I wanted to give a lot more exposure to the work I do and the services that I provide.</p>
<p>The blog will still be the area that I update most frequently and I already have a list of articles and guides that I&#8217;ll be adding over the coming months, so that area of the site will continue to grow and hopefully continue to be a success and useful resource to other web designers and developers in the community.</p>
<h2>Summary</h2>
<p>The aim of the redesign was mainly to ensure that the site looked professional to any potential clients but it was also important to me that I didn&#8217;t lose any existing people that enjoy reading the articles on a regular basis. Of course, over the coming weeks I&#8217;ll be keeping an eye on the site&#8217;s analytics to see how people are using the new site compared to the old one and I&#8217;ll be looking forward to any feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/dave-woods-co-uk-redesign/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Microsoft Agree to Browser Ballot</title>
		<link>http://www.dave-woods.co.uk/index.php/microsoft-agree-to-browser-ballot/</link>
		<comments>http://www.dave-woods.co.uk/index.php/microsoft-agree-to-browser-ballot/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 09:23:03 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/index.php/microsoft-agree-to-browser-ballot/</guid>
		<description><![CDATA[There&#8217;s been a lot of talk over the last few years regarding anti-trust charges against Microsoft due to them providing Internet Explorer as the default browser within their Windows operating system. However from March 2010 things are about to change.

The deal met by Microsoft means that during a Windows update from March of next year [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a lot of talk over the last few years regarding anti-trust charges against Microsoft due to them providing Internet Explorer as the default browser within their Windows operating system. However from March 2010 things are about to change.</p>
<p><span id="more-265"></span></p>
<p>The deal met by Microsoft means that during a Windows update from March of next year onwards for XP, Vista and Windows 7 machines, a ballot screen will be shown to users with a selection of 12 browsers to choose from.</p>
<p>The five most popular browsers, Internet Explorer, Firefox, Opera, Safari and Google Chrome, will appear in a random order. A further 7 browsers, AOL, Maxthon, K-Meleon, Flock, Avant, Sleipner and Slim will also be shown but in less prominent positions.</p>
<p>This list of browsers will be updated at least every six months depending how popular the software is and the ruling will remain in effect for at least the next five years. If Microsoft don&#8217;t abide by these terms then they could be fined up to 10% of yearly global turnover.</p>
<h3>Opinion</h3>
<p>Craig Buckler on <a href="http://www.sitepoint.com/blogs/2009/12/17/microsoft-browser-ballot-screen/">Sitepoint</a> isn&#8217;t sure about the idea:</p>
<blockquote><p>Whilst I’m pleased users will be educated about alternatives, I’m not convinced the ballot screen will have a major impact on browser market share. A choice of 12 options will be confusing for many novices. Those making an uninformed or random choice will still have a 50:50 chance of opting for an IE-based browser!</p></blockquote>
<p>Whilst I agree with Craig&#8217;s view that giving the majority of users this choice is likely to be overwhelming especially as the majority of the <a href="http://www.sitepoint.com/blogs/2009/10/27/google-explains-browsers/">public don&#8217;t know what a web browser is</a>, I do think it&#8217;s a step in the right direction albeit a long overdue change which may have come too late.</p>
<p>Sadly I don&#8217;t think much will change in terms of browser market share because of this move. I&#8217;d expect the majority of users to recognise the Internet Explorer icon that they&#8217;re so familiar with clicking on to open a web page and to stick with what they know on this ballot screen. I&#8217;ve tried introducing people to Firefox in the past and in a lot of cases it&#8217;s been a resounding failure as it&#8217;s unfamiliar due to people on the whole being negative to change so even if users are curious about the other options, I think this move is unlikely to swing a lot of people over to the better browsers.</p>
<h3>Summary</h3>
<p>People who understand web browsers are already in the know as to what makes a good web standard browser that is moving the web forward with HTML5 and CSS3 and are already using a Mozilla or Webkit browser. The majority of people though are still using Internet Explorer and this move is only going to create confusion for them as they won&#8217;t have any idea what different features are available within the 12 browsers on offer.</p>
<p>It&#8217;s a good idea to put pressure on Microsoft but the focus needs to be more heavily on them improving their own web browser and getting it up to the same standard as Safari and Firefox (or to adopt the Webkit engine) rather than this quick fix which in reality isn&#8217;t likely to have much impact at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/microsoft-agree-to-browser-ballot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer 9: CSS3 Support</title>
		<link>http://www.dave-woods.co.uk/index.php/internet-explorer-9-css3-support/</link>
		<comments>http://www.dave-woods.co.uk/index.php/internet-explorer-9-css3-support/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 08:40:29 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/index.php/internet-explorer-9-css3-support/</guid>
		<description><![CDATA[Internet Explorer 8 hasn&#8217;t long been on the market but Microsoft are working hard to make Internet Explorer 9 their best browser yet.

IE8 was released in March 2009 and was a big step forward and a welcome addition to the browser market for most web developers due to its better support of web standards and [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer 8 hasn&#8217;t long been on the market but Microsoft are working hard to make Internet Explorer 9 their best browser yet.</p>
<p><span id="more-263"></span></p>
<p>IE8 was released in March 2009 and was a big step forward and a welcome addition to the browser market for most web developers due to its better support of web standards and CSS2.1 support. However, there was also a lot of frustration that Microsoft were launching a browser that even on its day of release was still some way behind Firefox, Opera and Safari browsers.</p>
<p>CSS3 is the next big thing for front end designers and developers as it will make simple things like rounded corners and multiple background images much easier to accomplish without additional HTML or JavaScript workarounds. But despite Firefox and Safari showing initiative and creating support for these CSS3 features, in reality they&#8217;re unusable until the market leader (Internet Explorer) decides to implement them.</p>
<p>So it&#8217;s welcome news that Internet Explorer 9 will finally support CSS3.</p>
<div><img src='http://www.dave-woods.co.uk/wp-content/uploads/2009/11/ie9.png' alt='' /></div>
<p>For more information please have a read over on the <a href="http://beta.blogs.msdn.com/ie/archive/2009/11/18/an-early-look-at-ie9-for-developers.aspx">Blogs.MSDN website</a>.</p>
<h3>Summary</h3>
<p>Once again, it&#8217;s good to see that Microsoft are developing their browser and focusing on what the web development community want but the Internet Explorer browser seems to be falling further and further behind the other browsers with every release. What Internet Explorer are working on now is already available in Firefox and Safari so by the time IE9 finally hits the shelves (which I wouldn&#8217;t expect to be any time soon), the other browsers could be a couple of years ahead in terms of development.</p>
<p>How long will we have to wait for HTML5 video and audio support? CSS3 transformations? Instead of trying to catch up with the other browsers, has the time come where Microsoft should simply use the Webkit engine used by Safari and Google Chrome? What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/internet-explorer-9-css3-support/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Latest Work: PilotBean.com</title>
		<link>http://www.dave-woods.co.uk/index.php/latest-work-pilotbeancom/</link>
		<comments>http://www.dave-woods.co.uk/index.php/latest-work-pilotbeancom/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 16:46:22 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/index.php/latest-work-pilotbeancom/</guid>
		<description><![CDATA[I&#8217;m currently working for PilotBean who are a provider of web solutions specialising in content management systems, email marketing, ecommerce and web hosting. My latest tasks was to update the website to give it a more modern look and feel, make the site more user friendly and to drive traffic to the website via the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working for <a href="http://www.pilotbean.com">PilotBean</a> who are a provider of web solutions specialising in content management systems, email marketing, ecommerce and web hosting. My latest tasks was to update the website to give it a more modern look and feel, make the site more user friendly and to drive traffic to the website via the search engines.</p>
<p><span id="more-261"></span></p>
<h3>The Design</h3>
<p><img src="http://www.dave-woods.co.uk/wp-content/uploads/2009/11/pilotbean.jpg" /><br />
We wanted the design to be clean and simple but with a modern feel. The design had to be in keeping with the existing brand and be easy to use within document branding so it was important to consider that the design needed to be flexible.</p>
<h3>The Content Management System</h3>
<p>The PilotBean website uses the <a href="http://www.pilotbean.com/products/pilotsite">PilotSite Content Management System</a> which is a web based content management system that has been developed to enable non-technical users to create, update and manage their websites using a WYSIWYG editor.</p>
<h3>The HTML/CSS</h3>
<p>PilotBean.com has been built using semantic XHTML and validates to the W3C Strict guidelines. It’s also using web standards to ensure cross browser compatibility and uses CSS for presentation.</p>
<p>The website also endeavours to conform to Double-A of the <a href="http://www.w3.org/TR/WCAG/">World Wide Web Consortium (W3C) Web Content Accessibility Guidelines 2.0.</a> and is compatible with all major web browsers including Firefox, Opera, Safari, Google Chrome and Internet Explorer 6, 7 and 8.</p>
<h3>Search Engines</h3>
<p>The site has been built so that it&#8217;s search engine friendly but simply setting up a search engine friendly site isn&#8217;t always enough especially in a competitive industry so we&#8217;ve also conducted some keyword research to give each section as good a chance as possible to rank well in the search engines.</p>
<p>We also thought it would be a good idea to build a <a href="http://www.pilotbean.com/resources/">web development resources</a> section which contains useful advice to other people in the industry.</p>
<p>I&#8217;ll also be adding to this section with a complete beginners guide to HTML and CSS whilst others at the company will be contributing with useful articles on JavaScript, .net and other web related topics so please keep an eye on that section if you&#8217;re interested in other aspects of web development.</p>
<h3>Summary</h3>
<p>The PilotBean website is still a work in progress (as I believe all websites should be) and will continue to grow and expand over the coming months but the foundations are now in place for us to build upon.</p>
<p>Please feel free to leave any comments below (or <a href="http://www.pilotbean.com/contact_us/">contact PilotBean</a> directly via the website) if you have any thoughts about the site or if you have any suggestions as to how it could be improved or any additions you&#8217;d like to see.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/latest-work-pilotbeancom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounded Corners in Internet Explorer Using JQuery</title>
		<link>http://www.dave-woods.co.uk/index.php/rounded-corners-in-internet-explorer/</link>
		<comments>http://www.dave-woods.co.uk/index.php/rounded-corners-in-internet-explorer/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 10:15:58 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/index.php/rounded-corners-in-internet-explorer/</guid>
		<description><![CDATA[Recently I wrote an article on CSS3: Rounded CSS Corners, which is a great solution for creating rounded corners. However, Internet Explorer doesn&#8217;t yet support it, but there is a solution which this article explains.

The following two links demonstrate a working version and also a zip file so you can download everything you need to [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I wrote an article on <a href="http://www.dave-woods.co.uk/index.php/css3-rounded-css-corners/">CSS3: Rounded CSS Corners</a>, which is a great solution for creating rounded corners. However, Internet Explorer doesn&#8217;t yet support it, but there is a solution which this article explains.</p>
<p><span id="more-260"></span></p>
<p>The following two links demonstrate a working version and also a zip file so you can download everything you need to get this working.</p>
<ul>
<li><a href="http://www.dave-woods.co.uk/css3/ie-rounded-corners/">IE rounded corners demo</a></li>
<li><a href="http://www.dave-woods.co.uk/css3/ie-rounded-corners/ie-rounded-corners.zip">ie-rounded-corners.zip</a></li>
</ul>
<p>The HTML is pretty straight forward and uses the code from another article &#8211; <a href="http://www.dave-woods.co.uk/index.php/html5-tutorial-getting-started/">HTML5 tutorial: Getting Started</a>.</p>
<p>In order to get the rounded corners working in IE you&#8217;ll need <a href="http://jquery.com/">JQuery</a> and the <a href="http://www.malsup.com/jquery/corner/">JQuery corner script</a> both of which are included in the above zip file which I&#8217;ve then referenced from the HTML.</p>
<p><code>&lt;script src="js/jquery-1.3.2.min.js"&gt;&lt;/script&gt;<br />
&lt;script src="js/jquery.corner.js"&gt;&lt;/script&gt;</code></p>
<p>Next you&#8217;ll simply need to tell the browser which corners you want to be rounded.</p>
<p><code>&lt;script&gt;<br />
$("#container").corner();<br />
$("section").corner();<br />
$("aside").corner();<br />
$("#main-navigation a").corner("top 5px");<br />
&lt;/script&gt;</code></p>
<p>If you&#8217;re familiar with CSS at all then you should be able to easily see how this is applied using JavaScript as we&#8217;re simply using the element, ID or class within the quotes to target that part of the HTML.</p>
<h2>Summary</h2>
<p>And that&#8217;s all there is to it. You can create all kinds of rounded corner effects as shown on the <a href="http://www.malsup.com/jquery/corner/">rounded corners demo site</a>. Up until now, I&#8217;ve always created rounded corners using <a href="http://www.dave-woods.co.uk/index.php/css-rounded-corners-revisited/">this method</a> but seeing the simplicity of this Jquery solution, I am tempted to switch for Internet Explorer at least and rely on CSS3 for Webkit and Mozilla browsers.</p>
<p>What do you think? Are you still using images for rounded corner solutions or are the JavaScript and CSS3 methods becoming much more wide spread in the development community?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/rounded-corners-in-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS3: Rounded CSS Corners</title>
		<link>http://www.dave-woods.co.uk/index.php/css3-rounded-css-corners/</link>
		<comments>http://www.dave-woods.co.uk/index.php/css3-rounded-css-corners/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 08:58:20 +0000</pubDate>
		<dc:creator>Dave Woods</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.dave-woods.co.uk/index.php/css3-rounded-css-corners/</guid>
		<description><![CDATA[There&#8217;s many ways to create rounded corners using CSS but with the introduction of CSS3, our lives as web designers are about to become a lot easier.

Up until recently I&#8217;ve been using my Rounded corners with one image method which does cut down on the amount of HTML and images required but when dealing with [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s many ways to create rounded corners using CSS but with the introduction of CSS3, our lives as web designers are about to become a lot easier.</p>
<p><span id="more-259"></span></p>
<p>Up until recently I&#8217;ve been using my <a href="http://www.dave-woods.co.uk/index.php/css-rounded-corners-revisited/">Rounded corners with one image</a> method which does cut down on the amount of HTML and images required but when dealing with a lot of rounded corners the CSS can become a bit of a handful. But CSS2.1 didn&#8217;t have any alternatives so this was really the best solution to the rounded corners problem.</p>
<p>However, with CSS3 we can create rounded corners with a little bit of CSS.</p>
<p><code>#container {<br />
width: 840px;<br />
margin: 20px auto;<br />
background: #fff;<br />
padding: 30px;<br />
-moz-border-radius: 20px;<br />
-webkit-border-radius: 20px;<br />
}</code></p>
<p>This does currently only work in Mozilla and Webkit browsers (Firefox, Safari and Google Chrome) but does show the advantages of CSS3 which will be a huge welcome once Internet Explorer supports some of its features.</p>
<p>And here&#8217;s a quick example of how this could be put into practice:</p>
<ul>
<li><a href="http://dave-woods.co.uk/css3/rounded-corners-example/">Rounded CSS Corners Example</a></li>
</ul>
<p>As you should see, it works nicely in Safari, Firefox and partly in Google Chrome (which doesn&#8217;t seem to support the top rounded corners on the tabs) but also doesn&#8217;t break in Internet Explorer. When used correctly CSS3 can be used to progressively enhance a design but still be accessible within browsers which don&#8217;t support it.</p>
<p>For those people that want it to look identical in all browsers though, there are work arounds and you could apply the rounded corners to Internet Explorer using JavaScript which I&#8217;ll cover in my next tutorial.</p>
<h2>Summary</h2>
<p>So what do you think? Will you start using rounded CSS corners within your own work and client work at the moment or is Internet Explorer holding you back? Please feel free to leave any comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dave-woods.co.uk/index.php/css3-rounded-css-corners/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
