<?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>Paul Featherstone web design &#38; illustration blog</title>
	<atom:link href="http://www.design.paulfeatherstone.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.design.paulfeatherstone.co.uk/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 25 Apr 2010 10:04:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Making links in HTML</title>
		<link>http://www.design.paulfeatherstone.co.uk/blog/web-design/making-links-in-html/</link>
		<comments>http://www.design.paulfeatherstone.co.uk/blog/web-design/making-links-in-html/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 09:34:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[anchor tag]]></category>
		<category><![CDATA[html links]]></category>
		<category><![CDATA[hyperlinks]]></category>
		<category><![CDATA[making HTML hyperlinks]]></category>

		<guid isPermaLink="false">http://www.design.paulfeatherstone.co.uk/blog/?p=24</guid>
		<description><![CDATA[Links, or hyperlinks to give them their full title, are the most important component of any web page. Linking information together is what the World Wide Web was built for, it’s how the web works and how you can build web pages that are useful for visitors and gain visibility in the web universe.
There are [...]]]></description>
			<content:encoded><![CDATA[<p>Links, or hyperlinks to give them their full title, are the most important component of any web page. Linking information together is what the World Wide Web was built for, it’s how the web works and how you can build web pages that are useful for visitors and gain visibility in the web universe.</p>
<p>There are three key components to an HTML hyperlink:</p>
<p>The Unique Resource Locator or URL – this is the unique address on the web of the place you are linking to</p>
<p>The anchor tag – the hyperlink tag itself, this contains the URL (destination) and the text describing the link</p>
<p>The anchor text – the text in the anchor tag that describes the destination of the link</p>
<p>URL’s can also be absolute or relative depending on where the destination files you are linking to reside. Lets look at an example of each:</p>
<p>Absolute URL:</p>
<p><a href="http://www.design.paulfeatherstone.co.uk/blog/intro.php">http://www.design.paulfeatherstone.co.uk/blog/intro.php</a></p>
<p>With the full URL used my link can be used anywhere on the web and will link to my design blog. When I need to link to my blog from within my own site I do not need to use the full URL though, I can use a relative URL because my blog folder lives on the same server as all of my other files and folders. I therefore use the following relative link:</p>
<p>Relative URL:</p>
<p>/blog/intro.php</p>
<p>This achieves the same thing with less HTML code, or markup as it is known, which keeps code to a minimum and optimises performance for the user whilst also saving you (the budding web designer) time. Relative URL’s can also be used from within a particular folder as well as within a particular hosting server.</p>
<p>URL’s are also case sensitive so be very careful when choosing a naming convention for your URL’s – try to avoid capitalization where possible and stick to lower case – it will make life simple in the long run!</p>
<p>At this point you may be scratching your head and wondering what this long string of words actually means? Lets take a look at each section of our URL in more detail by referring to our previous example:</p>
<p><a href="http://www.design.paulfeatherstone.co.uk/blog/intro.php">http://www.design.paulfeatherstone.co.uk/blog/intro.php</a></p>
<p>Each section of the URL means the following:</p>
<p><strong>http://</strong> &#8211; this is the protocol indicator, used to tell servers how to send HTML information across the web. Also notice the variation of https:// for secure sites, more on this later in the series. There are various protocols used on the web but don’t worry too much about this now..</p>
<p><strong><a href="http://www.design.paulfeatherstone.co.uk">www.design.paulfeatherstone.co.uk</a></strong> &#8211; this is the hostname or domain name, just to complicate things further this is also an example of a sub domain. My main domain name is paulfeatherstone and I have created a sub section of this called design (always shown as a prefix and a dot). The www prefix is not necessary but has become a common naming convention for the web that most people recognise and use. The host or domain name is you unique place on the web, when people type this address they are served with the content you provide (i.e. your web pages, etc)</p>
<p><strong>blog</strong> – this is the directory or folder that my blog files live in, within any website you will find a fairly common set of folders such as blog, images, documents, etc. As with a personal computer, the files contained within a server are arranged in this way</p>
<p><strong>intro.php</strong> – within the blog directory or folder you will find my intro page, it’s written in php so you will find it at intro.php</p>
<p>Lets now take a look at how to construct a basic HTML link, firstly let ‘s look at the whole hyperlink:</p>
<p>&lt;a href=”<a href="http://www.paulfeatherstone.co.uk">http://www.paulfeatherstone.co.uk</a>”&gt;Link to the Paul Featherstone homepage&lt;/a&gt;</p>
<p>Lets now break the whole link apart:</p>
<p>&lt;a &#8211; the opening tag, this stands for anchor tag</p>
<p>href – this is the part of the tag that enables you to jump from one bit of information to another on the web</p>
<p><a href="http://..etc">http://..etc</a> &#8211; this is the URL which we broke down earlier in the post</p>
<p>Using descriptive text in anchor text is important to ensure compliance with WCAG standards for accessibility so avoid using anchor text such as ‘click here’, etc. Descriptive text is also good for search engines – it tells them a lot more about the meaning of your web pages.</p>
<p>Later in this series we will explore the use of images for links instead of text and also how to insert jump links so users can get straight to the content they are looking for.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fmaking-links-in-html%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fmaking-links-in-html%2F&amp;source=paulonumber1&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.design.paulfeatherstone.co.uk/blog/web-design/making-links-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making lists in HTML</title>
		<link>http://www.design.paulfeatherstone.co.uk/blog/web-design/making-lists-in-html/</link>
		<comments>http://www.design.paulfeatherstone.co.uk/blog/web-design/making-lists-in-html/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 21:47:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[html lists]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[what are li tags?]]></category>
		<category><![CDATA[what are list tags in html?]]></category>
		<category><![CDATA[what are ul tags?]]></category>

		<guid isPermaLink="false">http://www.design.paulfeatherstone.co.uk/blog/?p=20</guid>
		<description><![CDATA[Lists are one of the most useful and frequently used formatting tools when writing, this is no different on the web. In HTML lists are used for various things ranging from basic lists using bullets or numbers to more advanced use as a structural tool where text is replaced with images – more on this [...]]]></description>
			<content:encoded><![CDATA[<p>Lists are one of the most useful and frequently used formatting tools when writing, this is no different on the web. In HTML lists are used for various things ranging from basic lists using bullets or numbers to more advanced use as a structural tool where text is replaced with images – more on this later in this series. For now, lets just start with the basics.</p>
<p>There are three main tags required for the creation of basic HTML lists:</p>
<p>&lt;ul&gt; &#8211; unordered list<br />
&lt;ol&gt; &#8211; ordered, or numbered list<br />
&lt;li&gt; &#8211; the list item itself, this lives inside the &lt;ul&gt; and &lt;ol&gt; tags</p>
<p>So, lets put this together to make our first list:</p>
<p>&lt;p&gt;This is my first list:&lt;/p&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;My first list item&lt;/li&gt;<br />
&lt;li&gt;My second list item&lt;/li&gt;<br />
&lt;li&gt;My third list item&lt;/li&gt;<br />
&lt;/ul&gt;</p>
<p>This will display as:</p>
<p>This is my first list:</p>
<p><strong> </strong></p>
<ul>
<li>My first list item</li>
<li>My second list item</li>
<li>My third list item</li>
</ul>
<p>So there you go – your first list! Lets look at how to write an ordered or numbered list in HTML:</p>
<p>&lt;p&gt;This is my second list:&lt;/p&gt;</p>
<p>&lt;ol&gt;<br />
&lt;li&gt;My first list item&lt;/li&gt;<br />
&lt;li&gt;My second list item&lt;/li&gt;<br />
&lt;li&gt;My third list item&lt;/li&gt;<br />
&lt;/ol&gt;</p>
<p>Unlike the unordered list this list will appear as:</p>
<p><strong> </strong></p>
<p>This is my second list:</p>
<p><strong> </strong></p>
<p>1. My first list item<br />
2. My second list item<br />
3. My third list item</p>
<p>And there you have it – simple HTML lists.</p>
<p>In our next post we look at links, the element that the world wide web is built around.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fmaking-lists-in-html%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fmaking-lists-in-html%2F&amp;source=paulonumber1&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.design.paulfeatherstone.co.uk/blog/web-design/making-lists-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formatting HTML pages – basic formatting tags</title>
		<link>http://www.design.paulfeatherstone.co.uk/blog/web-design/formatting-html-pages-%e2%80%93-basic-formatting-tags/</link>
		<comments>http://www.design.paulfeatherstone.co.uk/blog/web-design/formatting-html-pages-%e2%80%93-basic-formatting-tags/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 21:13:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[bold tag]]></category>
		<category><![CDATA[heading tags]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[hTML bold tag]]></category>
		<category><![CDATA[html formatting tags]]></category>
		<category><![CDATA[html tags]]></category>
		<category><![CDATA[italics in HTML]]></category>

		<guid isPermaLink="false">http://www.design.paulfeatherstone.co.uk/blog/?p=15</guid>
		<description><![CDATA[So now you have seen the basic structure of an HTML page it is time to move on to some more advanced tags. In order to format the content in your HTML document you will need to use various tags.
Use these tags to enter content between the body tags in your HTML page.
Some important formatting [...]]]></description>
			<content:encoded><![CDATA[<p>So now you have seen the basic structure of an HTML page it is time to move on to some more advanced tags. In order to format the content in your HTML document you will need to use various tags.</p>
<p>Use these tags to enter content between the body tags in your HTML page.</p>
<p>Some important formatting HTML tags are:</p>
<p><strong>HTML Headings</strong></p>
<p>Headings are key components of any HTML document both from a structure perspective but also for search engines to use to make sense of the information hierarchy in your pages.</p>
<p>Heading tags run from one to six with one being the largest size of title and six being the smallest. Tags should always be used in sequence running in order from one to six (or as many as you need in the HTML document you are creating). Search engines will not like headings in the wrong order and it can also create a confusing experience for the user. As with other aspects of web design, consistency is key!</p>
<p>So, the heading tags are:</p>
<ul>
<li>&lt;H1&gt;Heading one&lt;/H1&gt;</li>
<li>&lt;H2&gt;Heading two&lt;/H2&gt;</li>
<li>&lt;H3&gt;Heading three&lt;/H3&gt;</li>
<li>&lt;H4&gt;Heading four&lt;/H4&gt;</li>
<li>&lt;H5&gt;Heading five&lt;/H5&gt;</li>
<li>&lt;H6&gt;Heading six&lt;/H6&gt;</li>
</ul>
<p><strong>HTML Paragraphs</strong></p>
<p>Okay, so you have headings, now time for some paragraphs.</p>
<p>All paragraphs need to live in the &lt;p&gt; tag..so:</p>
<p>&lt;p&gt;This is a paragraph talking about how much I like my new found web design skills&lt;/p&gt;</p>
<p>Remember, same format as previously stated: angle brackets for tags and backslash to close.</p>
<p><strong>Bold and italic HTML text tag</strong></p>
<p><strong> </strong></p>
<p>If you want to bold the text in your paragraph simple use the bold tag: &lt;b&gt;Some text to bold&lt;/b&gt;. Want to bold part of a paragraph of text, simple: &lt;p&gt;This bit is not to be in bold &lt;b&gt;but this bit is&lt;/b&gt;&lt;/p&gt;</p>
<p>You could also use the strong tag to bold: &lt;strong&gt;Some text here&lt;/strong&gt;.</p>
<p>For italic text you can use: &lt;i&gt;some text in italics&lt;/i&gt;. Same structure and tag format.</p>
<p>Next, how to make lists in HTML.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fformatting-html-pages-%25e2%2580%2593-basic-formatting-tags%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fformatting-html-pages-%25e2%2580%2593-basic-formatting-tags%2F&amp;source=paulonumber1&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.design.paulfeatherstone.co.uk/blog/web-design/formatting-html-pages-%e2%80%93-basic-formatting-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create an HTML page – basic tag structure</title>
		<link>http://www.design.paulfeatherstone.co.uk/blog/web-design/how-to-create-an-html-page-%e2%80%93-basic-tag-structure/</link>
		<comments>http://www.design.paulfeatherstone.co.uk/blog/web-design/how-to-create-an-html-page-%e2%80%93-basic-tag-structure/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 20:41:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[basic html tags]]></category>
		<category><![CDATA[basic tag structure]]></category>
		<category><![CDATA[create basic web page]]></category>
		<category><![CDATA[learn html]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[web page design]]></category>

		<guid isPermaLink="false">http://www.design.paulfeatherstone.co.uk/blog/?p=9</guid>
		<description><![CDATA[So you have the tools you need to enable you to start to think about writing your first html code. Lets start at the beginning – seems like a good place.
HTML web pages are a combination of text, links and objects such as images and multimedia files. Tags are used to write HTML and always [...]]]></description>
			<content:encoded><![CDATA[<p>So you have the tools you need to enable you to start to think about writing your first html code. Lets start at the beginning – seems like a good place.</p>
<p>HTML web pages are a combination of text, links and objects such as images and multimedia files. Tags are used to write HTML and always take the form of:</p>
<p>&lt;Tag&gt;some content&lt;/Tag&gt;</p>
<p>Tags can also live inside other tags, otherwise known as nesting or nested tags:</p>
<p>&lt;Tag&gt;</p>
<p>&lt;Tag 2&gt;some stuff here!&lt;/Tag 2&gt;</p>
<p>&lt;/Tag&gt;</p>
<p>Don’t worry, you will become used to tags and may even grow to love them (see “I have become a computer nerd”: chapter 22!)</p>
<p>Every web page is made up of a standard set of components, each has its’ own tag. These tags are common to every HTML page and provide the structure, they are:</p>
<ul>
<li>Doctype – identified doc as HTML, includes version type</li>
<li>HTML – defines doc as HTML</li>
<li>Head – container for info about the document</li>
<li>Title – provides descriptive title for doc</li>
<li>Meta – provides specific data about doc including info for search engines</li>
<li>Body – contains all info within main body of HTML document</li>
</ul>
<p>This is how they look in an HTML page</p>
<p><strong> </strong></p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt; &lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt; &lt;head&gt; &lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=UTF-8&#8243; /&gt; &lt;title&gt;Untitled Document&lt;/title&gt; &lt;/head&gt;  &lt;body&gt; &lt;/body&gt; &lt;/html&gt;</p>
<p><strong> </strong></p>
<p>Notice that all of the components follow the same tag format mentioned previously – an opening tag and then a closing tag that includes a back slash.</p>
<p><strong> </strong></p>
<p>That’s all for now, more tags in the next section!
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fhow-to-create-an-html-page-%25e2%2580%2593-basic-tag-structure%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fhow-to-create-an-html-page-%25e2%2580%2593-basic-tag-structure%2F&amp;source=paulonumber1&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.design.paulfeatherstone.co.uk/blog/web-design/how-to-create-an-html-page-%e2%80%93-basic-tag-structure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An introduction to Web Design</title>
		<link>http://www.design.paulfeatherstone.co.uk/blog/web-design/an-introduction-to-web-design/</link>
		<comments>http://www.design.paulfeatherstone.co.uk/blog/web-design/an-introduction-to-web-design/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 21:07:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.design.paulfeatherstone.co.uk/blog/?p=7</guid>
		<description><![CDATA[

 
Tools you need to start web designing
This post will provide you with information on how to get started with web design and tells you the basics.
There are a number of things you will need before you can start to think about how to construct on the web:

Editor – some way of creating documents in [...]]]></description>
			<content:encoded><![CDATA[<p><strong><br />
</strong></p>
<p><strong> </strong></p>
<p><strong>Tools you need to start web designing</strong></p>
<p>This post will provide you with information on how to get started with web design and tells you the basics.</p>
<p>There are a number of things you will need before you can start to think about how to construct on the web:</p>
<ul>
<li>Editor – some way of creating documents in HTML/php/css format</li>
<li>FTP – a way of transferring files (uploading / downloading) to the web</li>
<li>Design software – I’m assuming you will want some kind of graphics in your website</li>
<li>Browsers – it is useful to think about browsers at this stage as sites can appear differently in different types</li>
</ul>
<p>For editing you web pages you can use a basic text editor or something more sophisticated such as Adobe Dreamweaver or Microsoft Expression. You can even use Microsoft Word to create web pages believe it or not.</p>
<p>File Transfer Protocol, or FTP for short, is the main method of transferring (that’s uploading and downloading) files to the web. More sophisticated web design packages such as those produced by Adobe and Microsoft include this facility as standard. If you choose to use a [cheaper or free] alternative then you will have to find a separate FTP programme to use. There are many good free FTP programmes available, Google this term or search on Download.com for some examples.</p>
<p>Nice graphics help create a high quality user experience for your websites through good design. You don’t have to use expensive software (see Adobe Creative Suite), there are plenty of goof free tools out there on the web. As long as you can crop and resize graphics you will find them of some use. Icons and buttons can often be accessed via free sites, this may avoid the need for graphics editing when you are creating your site(s).</p>
<p>At this point it is worth thinking about browsers, sites will often look different depending on which browser they are being viewed on. Although this is becoming less of an issue to web designers as web standards actually become standard across different browsers, it is still a consideration. The main differences exist between Internet Explorer version 6 (still used by many users) and all other browsers. As a minimum try to test your websites on Mozilla and IE 6 / later version.</p>
<p><strong>Understanding the language of the web: HTML and CSS</strong></p>
<p>There are two key points to understanding how to design a basic website – one is the language of the web – Hyper Text Markup Link &#8211; HTML, the other is the method of styling your HTML code so that it looks visually appealing and doesn’t appear like a word processor document – Cascading Style Sheets &#8211; CSS.</p>
<p>In order to understand how these two languages work together think of HTML as the steel frame of a building – it provides structure but no style. Think of CSS as the design of the walls which fit around the steel frame – thus defining the look and feel of the building – or in our case our website.</p>
<p>Stylesheets are defines by lines of code in our HTML documents or web pages, typically there exist multiple stylesheets for multiple tasks or browsers. For example, you may need a stylesheet for how your web site looks in a browser and a separate one for print. You may also require one stylesheet so your site looks okay in IE6 and another for alternative / newer browsers.</p>
<p>Read the next article for more detailed information on how to become a web designer. Next: the basics of HTML, lets get started!
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fan-introduction-to-web-design%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fweb-design%2Fan-introduction-to-web-design%2F&amp;source=paulonumber1&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.design.paulfeatherstone.co.uk/blog/web-design/an-introduction-to-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greeting Card Association</title>
		<link>http://www.design.paulfeatherstone.co.uk/blog/illustration/greeting-card-association/</link>
		<comments>http://www.design.paulfeatherstone.co.uk/blog/illustration/greeting-card-association/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 09:17:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[greeting card association]]></category>
		<category><![CDATA[greeting cards]]></category>

		<guid isPermaLink="false">http://www.design.paulfeatherstone.co.uk/blog/?p=4</guid>
		<description><![CDATA[I have found some great resources on the Greeting Card Association website. If you are an artist or illustrator and are looking to produce illustration greeting cards then you can find information here on all aspects of marketing and distributing your work commercially.
http://www.greetingcardassociation.org.uk/home/

			
				
			
		
]]></description>
			<content:encoded><![CDATA[<p>I have found some great resources on the Greeting Card Association website. If you are an artist or illustrator and are looking to produce illustration greeting cards then you can find information here on all aspects of marketing and distributing your work commercially.</p>
<p>http://www.greetingcardassociation.org.uk/home/</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fillustration%2Fgreeting-card-association%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Fillustration%2Fgreeting-card-association%2F&amp;source=paulonumber1&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.design.paulfeatherstone.co.uk/blog/illustration/greeting-card-association/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://www.design.paulfeatherstone.co.uk/blog/uncategorized/hello-world/</link>
		<comments>http://www.design.paulfeatherstone.co.uk/blog/uncategorized/hello-world/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 10:42:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.design.paulfeatherstone.co.uk/blog/?p=1</guid>
		<description><![CDATA[Welcome to the all new Paul Featherstone Web Design and Illustration Blog!

			
				
			
		
]]></description>
			<content:encoded><![CDATA[<p>Welcome to the all new Paul Featherstone Web Design and Illustration Blog!
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Funcategorized%2Fhello-world%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.design.paulfeatherstone.co.uk%2Fblog%2Funcategorized%2Fhello-world%2F&amp;source=paulonumber1&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.design.paulfeatherstone.co.uk/blog/uncategorized/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
