<?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>Tom Hirst</title>
	<atom:link href="http://tomhirst.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomhirst.co.uk</link>
	<description>Freelance Web Designer in Barnsley, South Yorkshire</description>
	<lastBuildDate>Wed, 21 Jul 2010 00:30:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Custom Web Fonts with @font-face, Google Font API and Typekit</title>
		<link>http://tomhirst.co.uk/custom-web-fonts-with-font-face-google-font-api-and-typekit/</link>
		<comments>http://tomhirst.co.uk/custom-web-fonts-with-font-face-google-font-api-and-typekit/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 00:12:18 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Typography]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://tomhirst.co.uk/?p=325</guid>
		<description><![CDATA[The aim of this post is to briefly round up our options when using custom fonts in web design. So let's take a look!]]></description>
			<content:encoded><![CDATA[<p>A while ago I found myself constantly using the same font for everything. I&#8217;m talking body copy, header tags and even logos. My Helvetica (with -1px letter-spacing) obsession was at its peak and I was struggling to mix up my font stacks to add more variation to my designs.</p>
<p>Since then, as advances in web typography have become more readily available, I&#8217;ve found it much easier to use type as a key design element in my work, as opposed to being creatively restricted by &#8220;web-safe&#8221; fonts. The aim of this post is to briefly round up our options (along with my views) when using custom fonts in web design. So let&#8217;s take a look!</p>
<h3>CSS3 @font-face</h3>
<p>With CSS3 standards right around the corner, <i>most</i> browsers supporting CSS3 features and more websites taking advantage of them &#8211; @font-face is a custom web font option to consider.</p>
<p><a href="http://www.fontsquirrel.com/fonts/ChunkFive"><img class="contentimgleft" src="http://tomhirst.co.uk/wp-content/uploads/2010/07/chunkfive_fontface.jpg" /></a></p>
<p>I use the @font-face method for this website and I feel it works well. <a href="http://www.fontsquirrel.com/fonts/ChunkFive">ChunkFive Regular</a> is an example of a free font that&#8217;s license allows us to embed it into our CSS, as I have done with header tags on this site. I would strongly suggest you make sure that by using @font-face you are not breaking the terms of any font you intend on embedding.</p>
<p>Whilst on the subject of @font-face, I must mention the incredibly useful <a href="http://www.fontsquirrel.com/fontface">Font Face Kits</a> by <a href="http://www.fontsquirrel.com">Font Squirrel</a>. There are 100s of pre-made @font-face kits that include multiple type formats for all browsers, including Internet Explorer! You can even make your own kits by uploading other fonts with the <a href="http://www.fontsquirrel.com/fontface/generator">Font Face Generator</a> but again, check those licenses.</p>
<h3>CSS</h3>
<pre>
<code>
@font-face
{
	font-family: 'ChunkFiveRegular';
	src: url('Chunkfive-webfont.eot');
	src: local('‚ò?'), url('Chunkfive-webfont.woff') format('woff'), url('Chunkfive-webfont.ttf') format('truetype'), url('Chunkfive-webfont.svg#webfont') format('svg');
	font-weight: normal;
	font-style: normal;
}

h2
{
	font-family: ChunkFiveRegular, Georgia, serif;
}

</code>
</pre>
<h3>Pros</h3>
<ul>
<li>Endless available fonts (providing you are adhering to the relevant licenses when using them!).</li>
<li>Works in all browsers (including iPhone and iPad) when all the right font formats are used.</li>
<li>Is <u>not</u> dependant on JavaScript being enabled in the users browser.</li>
</ul>
<h3>Cons</h3>
<ul>
<li>It takes slightly longer to implement than Google Font API (more code).</li>
<li>Quality of font rendering may differ browser to browser.</li>
<li>@font-face is a CSS3 property, so will <u>not</u> pass current W3C CSS 2.1 validation.</li>
</ul>
<div class="hr"></div>
<h3>Google Font API</h3>
<p>Recently, my first stop when working out typography for new projects has been the <a href="http://code.google.com/apis/webfonts/">Google Font API</a>. Although a relatively new service, I find it incredibly simple to use and more importantly painless to set up. The speed of which I can quickly browse the <a href="http://code.google.com/webfonts">Font Directory</a>, choose a suitable font and have it live on a website is incredible. This is definitely the most hassle free option when using custom web fonts, in my opinion.</p>
<p><a href="http://code.google.com/webfonts"><img class="contentimgleft" src="http://tomhirst.co.uk/wp-content/uploads/2010/07/google_font_directory.jpg" width="608px" /></a></p>
<p>The only let down with the Google Font API currently (the service is still in beta) is the fairly small amount of fonts available, although there are variants (bold, italic, etc.) included with some fonts in the directory.</p>
<h3>HTML</h3>
<pre>
<code>
&lt;head&gt;
        &lt;link href=' http://fonts.googleapis.com/css?family=Cantarell' rel='stylesheet' type='text/css'&gt;
&lt;/head&gt;
</code>
</pre>
<h3>CSS</h3>
<pre>
<code>
h2
{
        font-family: 'Cantarell', arial, serif;
}
</code>
</pre>
<h3>Pros</h3>
<ul>
<li>It&#8217;s a free service.</li>
<li>Extremely quick set up time (small amount of code).</li>
<li>Is <u>not</u> dependant on JavaScript being enabled in the users browser.</li>
<li>No need to worry about license legalities.</li>
</ul>
<h3>Cons</h3>
<ul>
<li>Small number of fonts to choose from.</li>
<li>Quality of font rendering may differ browser to browser.</li>
<li>No support for iPhone or iPad.</li>
</ul>
<div class="hr"></div>
<h3>Typekit</h3>
<p>I first heard about <a href="#">Typekit</a> when I received an invitation to try it out a year or so ago. The first thing I noticed is the huge font library &#8211; you will definitely find a typeface to fit your designs there. The second thing I discovered was that to use the service to its full extent you have to pay a yearly fee. The &#8220;Portfolio&#8221; package, which gives you unlimited websites, unlimited fonts per site and access to the full library is by no means expensive at $49.99 per year &#8211; but this cost may still be off-putting, especially for designers who are just starting out.</p>
<p><a href="http://typekit.com/"><img class="contentimgleft" src="http://tomhirst.co.uk/wp-content/uploads/2010/07/typekit.jpg" width="608px" /></a></p>
<p>I had used the free trail account to test out <a href="http://typekit.com">Typekit&#8217;s</a> functionality, although the limitation of 1 website and 2 fonts is kind of low in my opinion. Coupled with the lack of access to the full font library and the requirement of a Typekit badge in a fixed position on my page, I wasn&#8217;t won over enough to upgrade to a paid account.</p>
<h3>HTML</h3>
<pre>
<code>
&lt;head&gt;
        &lt;script type="text/javascript" src="http://use.typekit.com/typekitid.js"&gt;&lt;/script&gt;
        &lt;script type="text/javascript"&gt;try{Typekit.load();}catch(e){}&lt;/script&gt;
&lt;/head&gt;
</code>
</pre>
<h3>CSS</h3>
<pre>
<code>
h2
{
        font-family: "museo-sans-1", "museo-sans-2", sans-serif;
}
</code>
</pre>
<h3>Pros</h3>
<ul>
<li>Large array of available fonts.</li>
<li>Good support articles and help section.</li>
</ul>
<h3>Cons</h3>
<ul>
<li>Whilst not overly expensive, Typekit is a paid for service (if you want all features).</li>
<li>Browsers may render your page content before the custom font, usually meaning a web-safe fallback will be shown for a couple of seconds beforehand.</li>
<li><u>Is</u> dependant on JavaScript being enabled in the users browser.</li>
<li>No support for iPhone or iPad.</li>
</ul>
<div class="hr"></div>
<h3>In conclusion</h3>
<p>The custom web font method you use with any given project will be decided by both personal preference and the requirements of each design/build. For instance, if you require your custom font to work with Mobile Safari you would choose @font-face over Google Font API or Typekit. This was the clincher for me personally due to two main reasons &#8211; #1 My analytics show a high percentage of visits are from this browser and #2 I like to browse the internet using my iPad. Therefore giving visitors of my site (including myself) the best possible user experience is of high priority to me and using @font-face delivers this.</p>
<p>I hope you found this article interesting. If you have anything to add, whether you agree or disagree with my points &#8211; please feel free to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://tomhirst.co.uk/custom-web-fonts-with-font-face-google-font-api-and-typekit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New York themed iPhone 4 wallpapers</title>
		<link>http://tomhirst.co.uk/new-york-themed-iphone-wallpapers/</link>
		<comments>http://tomhirst.co.uk/new-york-themed-iphone-wallpapers/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 14:44:47 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Free Stuff]]></category>

		<guid isPermaLink="false">http://tomhirst.co.uk/?p=275</guid>
		<description><![CDATA[Having had the standard "earth" wallpaper on my iPhone 4 for the first week of ownership, I decided it was time for change and to make more use out of that new retina display. What better way to personalise my new gadget than with one of my favourite places, New York!]]></description>
			<content:encoded><![CDATA[<p>Having had the standard &#8220;earth&#8221; wallpaper on my iPhone 4 for the first week of ownership, I decided it was time for change and to make more use out of that new retina display. What better way to personalise my new gadget than with one of my favourite places, New York!</p>
<p><img src="http://tomhirst.co.uk/wp-content/uploads/2010/07/ny-wallpapers.jpg" class="contentimgleft" /></p>
<p>The bonus with iOS4 is we can now use two different wallpapers &#8211; one for the lock screen and one for the main menu and everything else. This means you can use two of these wallpapers in tandem! It certainly helped me as I couldn&#8217;t pick between my favourite pair and I feel it gives the iPhone more of a &#8220;theme&#8221; to it, rather than using just a single wallpaper.</p>
<p>The wallpapers are created from photographs I took from a recent trip to NYC, edited in Lightroom and re-sized in Photoshop. They are free to use how and where you want, although if you want to link to them &#8211; please use the URL of <a href="http://tomhirst.co.uk/new-york-themed-iphone-wallpapers">this post</a> (not the direct download).</p>
<p>To download the iPhone 4 wallpapers (file size 1.4MB), click the button below &#8211; I hope you enjoy them!</p>
<p style="font-size: 14px;">
<input type="button" class="button" style="margin-right: 20px;" onClick="location.href='http://tomhirst.co.uk/downloads/ny-iphone4-wallpapers.zip'" value="Download Wallpapers" /></p>
]]></content:encoded>
			<wfw:commentRss>http://tomhirst.co.uk/new-york-themed-iphone-wallpapers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Giving yourself the right title</title>
		<link>http://tomhirst.co.uk/giving-yourself-the-right-title/</link>
		<comments>http://tomhirst.co.uk/giving-yourself-the-right-title/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 12:47:16 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Freelancing]]></category>

		<guid isPermaLink="false">http://tomhirst.co.uk/?p=164</guid>
		<description><![CDATA[Upon graduating from University I jumped straight into the realms of self-employment. One of the things I have learned in this time is the importance of giving yourself the right title and branding yourself successfully.]]></description>
			<content:encoded><![CDATA[<p>Upon graduating from University I jumped straight into the realms of self-employment. One of the things I have learned in this time is the importance of giving yourself the right title and branding yourself successfully.</p>
<p>I have always described myself as a web designer and since I work for myself, a freelancer &#8211; but does this best reflect firstly, my abilities as a designer and secondly, what I have to offer my clients?</p>
<p>Like many freelancers, word of mouth recommendations are a large part of my work flow. This is all well and good until I realise I&#8217;ve been mis-sold. For instance, an existing client recommends my services to a potential client describing me as the &#8220;website designer guy&#8221;. The potential client then gets in touch expecting me to write them a custom CMS, or re-create Facebook from scratch. Sure I have <i>some</i> development skills, but the time it takes me to educate the client about the differences between designer and developer is cringe-worthy; usually ending with said potential client disappointed that I can&#8217;t develop their application for the same price the recommender&#8217;s WordPress design and build cost.</p>
<p>On the flip side of the initial cringe-worthy situation, this is still a lead that I would not have had. With a bit of project management, outsourcing and explanation to the client on my part I could still get these requirements fulfilled &#8211; budget and time frame dependant of course.</p>
<p>Upon reflection and relating this back to giving yourself the appropriate title, I think the client&#8217;s vague perception of a &#8220;web designer&#8221; is actually a plus point in getting new work. Granted some people will leave the initial discussion disappointed but sometimes things don&#8217;t work out and you won&#8217;t win a project, it&#8217;s just part of the industry.</p>
<p>The importance of the right title is again highlighted when dealing with design agencies. Obviously a company looking for freelance creatives will know the difference between someone describing themselves as a &#8220;web designer&#8221;, &#8220;web developer&#8221;, &#8220;illustrator&#8221;, &#8220;photographer&#8221;, etc. Assigning yourself the most relevant job title will more than likely make it easier for them to find you, thus leading to potential new work.</p>
<h3>Tangent alert!</h3>
<p>But then this got me thinking. Is giving myself the &#8220;freelance&#8221; title and using my own name the best way to advertise my services as a whole? Should I consider creating a brand for my business and work under the guise of &#8220;we&#8221; rather than &#8220;I&#8221;? I think this might be an option as in my experience, people like to think they are working with an orchestra and not just a one man band.</p>
<p>More on this from me a little further down the line.</p>
<h3>In conclusion</h3>
<p>As creatives it&#8217;s pretty much impossible to summarise our entire skill set with a single title. Most designers will at some point have strayed away from their bread and butter. For example, I&#8217;ve delved into print design on a few occasions, with web design being my day to day job.</p>
<p>I think the most effective strategy is to create a company identity but not forget the importance of your name and title as a brand in it&#8217;s own right. By running both in parallel, you are casting the net over a larger number of potential clients and jobs. The smaller (project, budget and personnel) clients who prefer to work one to one and larger companies who like to think they&#8217;re dealing with a 10-strong design house.</p>
<p>On a personal level, I have spent the last year building up my personal brand. Thus, starting to look at the bigger marketing picture is my next step to gaining more clients and ultimately growing my business.</p>
<h3>Additional reading</h3>
<p></p>
<ul>
<li><a href="http://jasonsantamaria.com/articles/explain-yourself/">Explain Yourself</a></li>
<li><a href="http://www.positivespaceblog.com/archives/graphic-designer-vs-web-designer-or-neither/">GRAPHIC DESIGNER VS. WEB DESIGNER OR NEITHER?</a></li>
<li><a href="http://www.andybudd.com/archives/2005/04/whats_in_a_name/">What&#8217;s in a Name</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tomhirst.co.uk/giving-yourself-the-right-title/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the first thing you do with a new WordPress install?</title>
		<link>http://tomhirst.co.uk/whats-the-first-thing-you-do-with-a-new-wordpress-install/</link>
		<comments>http://tomhirst.co.uk/whats-the-first-thing-you-do-with-a-new-wordpress-install/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 14:01:32 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://tomhirst.co.uk/?p=211</guid>
		<description><![CDATA[As you probably already know, I'm a massive fan of Wordpress. I use it for the majority of my projects, hence installing and configuring it on a regular basis. After starting a fresh site today, I realised I've picked up a set up habit.]]></description>
			<content:encoded><![CDATA[<p>As you probably already know, I&#8217;m a massive fan of WordPress. I use it for the majority of my projects, hence installing and configuring it on a regular basis. After starting a fresh site today, I realised I&#8217;ve picked up a set up habit.</p>
<p>I always (<i>like, literally always</i>) do this first:<br />
<img class="contentimgleft" src="http://tomhirst.co.uk/wp-content/uploads/2010/06/postname_permalink.png" alt="Permalink /%postname%/" title="Permalink /%postname%/" /></p>
<div class="clearFloat"></div>
<p>This particular permalink structure has proven successful for me in terms of SEO, although my main reason for using it is I can&#8217;t stand the default WordPress suggestions. For instance, what does <i>http://tomhirst.co.uk/?p=123</i> mean to anybody? It&#8217;s in no way descriptive enough.</p>
<p>I&#8217;m not sure why this is my first port of call, but it&#8217;s just one of those things my mind goes on autopilot to do. I guess it&#8217;s like driving to work everyday &#8211; something you do without thinking, as you know the route by heart. </p>
<p>So, what&#8217;s your first step when configuring a clean install of WordPress? Leave a comment and let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://tomhirst.co.uk/whats-the-first-thing-you-do-with-a-new-wordpress-install/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Redesign complete!</title>
		<link>http://tomhirst.co.uk/redesign-complete/</link>
		<comments>http://tomhirst.co.uk/redesign-complete/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 00:00:03 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Site Updates]]></category>

		<guid isPermaLink="false">http://tomhirst.co.uk/?p=117</guid>
		<description><![CDATA[After far, <i>far</i> too long with the standard one page site - I've finally had the time to give my portfolio a brand new look.]]></description>
			<content:encoded><![CDATA[<p><a href="http://tomhirst.co.uk/wp-content/uploads/2010/06/Tom-Hirst-Freelance-web-designer-based-in-Barnsley-South-Yorkshire-1.png"><img src="http://tomhirst.co.uk/wp-content/uploads/2010/06/Tom-Hirst-Freelance-web-designer-based-in-Barnsley-South-Yorkshire-1-148x300.png" alt="Tom Hirst&#039;s old portfolio website" title="Tom Hirst&#039;s old portfolio website" width="148" height="300" class="contentimgleft" /></a></p>
<p>After far, <i>far</i> too long with the standard one page site &#8211; I&#8217;ve finally had the time to give my portfolio a brand new look.</p>
<p>For reference and to anyone who didn&#8217;t see the previous design, click the screenshot to the left. It&#8217;s come a long way don&#8217;t you think?</p>
<p>I&#8217;m really happy with it and it&#8217;s great to finally see the finished product live.  A fair amount of time has been spent on attention to detail; getting everything exactly how I want it without cutting any corners. Hopefully everyone will enjoy using it and reading my blog posts!</p>
<p>Let me know what you think! <u>Constructive</u> criticism is always welcome &#8211; so if you&#8217;ve got any suggestions, feel free to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://tomhirst.co.uk/redesign-complete/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
