<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Darren Paul Azzopardi</title>
	<atom:link href="http://darrenazzopardi.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://darrenazzopardi.wordpress.com</link>
	<description>Education in Web</description>
	<lastBuildDate>Tue, 06 Apr 2010 15:59:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='darrenazzopardi.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/713ae7dec2052ab0ac41b8d5cef74a28?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Darren Paul Azzopardi</title>
		<link>http://darrenazzopardi.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://darrenazzopardi.wordpress.com/osd.xml" title="Darren Paul Azzopardi" />
	<atom:link rel='hub' href='http://darrenazzopardi.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Please complete this field</title>
		<link>http://darrenazzopardi.wordpress.com/2010/04/06/semantic-feedback-form-suggestion/</link>
		<comments>http://darrenazzopardi.wordpress.com/2010/04/06/semantic-feedback-form-suggestion/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 14:03:13 +0000</pubDate>
		<dc:creator>dazzclub</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Web Accessibility]]></category>

		<guid isPermaLink="false">http://darrenazzopardi.wordpress.com/?p=281</guid>
		<description><![CDATA[Wouldn&#8217;t take you too long to find a reliable tutorial advising you on the best methods of creating a form. Here are just some (search criteria &#8220;creating an accessible form&#8220;). CSS Tricks Web Usability The Web Standards Project Stuff and Nonsense A List Apart What I am interested in is how the author codes the users [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=281&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Wouldn&#8217;t take you too long to find a reliable tutorial advising you on the best methods of creating a form. </strong></p>
<p>Here are just some <em>(search criteria &#8220;<a title="Google search results " href="http://www.google.co.uk/search?q=creating+an+accessible+form&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a">creating an accessible form</a>&#8220;)</em>.</p>
<ol>
<li><a title="Tips For Creating Great Web Forms" href="http://css-tricks.com/tips-for-creating-great-web-forms/">CSS Tricks</a></li>
<li><a title="Accessible Forms " href="Web Usability - Accessible Forms">Web Usability</a></li>
<li><a title="Accessible HTML/XHTML Forms: Beginner Level" href="http://www.webstandards.org/learn/tutorials/accessible-forms/beginner/">The Web Standards Project</a></li>
<li><a title="Stylish, accessible forms" href="http://www.stuffandnonsense.co.uk/archives/stylish_accessible_forms.html">Stuff and Nonsense</a></li>
<li><a title="Prettier Accessible Forms" href="http://www.alistapart.com/articles/prettyaccessibleforms/">A List Apart</a></li>
</ol>
<p>What I am interested in is how the author codes the users feedback, the interaction part. Whether its for the instant <em>as-you-type notification</em> or after <em>submitting the form</em>.</p>
<p>This isn&#8217;t an attack on those authors, its more of, <em>&#8220;am I doing this right?&#8221;</em>.</p>
<p><strong>I guess I&#8217;m looking for reassurance.</strong></p>
<p>A while back I read a tutorial by CSS Wizardy on creating an accessible form. I emailed the author to say thank you, as a self taught web designer I&#8217;m very grateful of people who share their knowledge. But I also wanted to understand the reason behind the choice of HTML.</p>
<p>You see, in this tutorial one thing looked odd. Not wrong, just odd. The markup used to notify the users attention of either an incomplete field or a failed submission looked like this;</p>
<p><code>&lt;span class="alert"&gt;Warning!&lt;/span&gt;</code></p>
<p>There&#8217;s nothing wrong with that. Its been given semantic meaning  by a class named<strong> alert. </strong>But can we use a more meaningful markup?</p>
<p><strong> </strong>The HTML  tag used here is <a title="read W3C's definition" href="http://www.w3.org/TR/html401/struct/global.html#h-7.5.4">&lt;span&gt;</a> and if i can remember its a generic markup that doesn&#8217;t really imply   any meaning.</p>
<p>Seeing a message appear  on screen would make us aware of how important it  is. We&#8217;ll jump on  that and correct it. Visually it all makes sense but what about under the bonnet?</p>
<h2>My semantic suggestion</h2>
<p>Lets think about it for a second. Failing to complete a form/field is  rather important. For the user and the website owner.  To carry this important message we could apply <code>&lt;strong&gt;</code> tag.</p>
<p>So in my forms I would markup an <em>incomplete field notice</em> link this;</p>
<p><code>&lt;strong&gt;You've forgotten to enter a name   silly!&lt;/strong&gt;</code></p>
<p>Nothing too fancy I&#8217;m using the <code>&lt;strong&gt;</code> attribute here. I think this offers better semantics and structure, after all we want to convey the meaning of the <strong>warning</strong>, <strong>alert</strong> or <strong>notice</strong> message across to the users and to be understood by all.</p>
<p>So if its an error message I use <code>&lt;strong&gt;</code> and  in some cases use an <code>&lt;em&gt;</code> for as-you-type validation.</p>
<p>Another reason I feel this is important is that screen reader users will be alerted to the importance of the message by the way its read out as the voice and pitch changes when reading text within <code>&lt;strong&gt;</code> or <code>&lt;em&gt;</code> tags.</p>
<p>Would really like to hear thoughts, suggestions and opinions on this subject.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrenazzopardi.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrenazzopardi.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrenazzopardi.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrenazzopardi.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrenazzopardi.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrenazzopardi.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrenazzopardi.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrenazzopardi.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrenazzopardi.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrenazzopardi.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrenazzopardi.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrenazzopardi.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrenazzopardi.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrenazzopardi.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=281&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://darrenazzopardi.wordpress.com/2010/04/06/semantic-feedback-form-suggestion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/820df6bfc1b6014e81011db93db9a131?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dazzclub</media:title>
		</media:content>
	</item>
		<item>
		<title>title attribute in a url</title>
		<link>http://darrenazzopardi.wordpress.com/2010/03/29/title-attribute/</link>
		<comments>http://darrenazzopardi.wordpress.com/2010/03/29/title-attribute/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 20:52:46 +0000</pubDate>
		<dc:creator>dazzclub</dc:creator>
				<category><![CDATA[Web Accessibility]]></category>

		<guid isPermaLink="false">http://darrenazzopardi.wordpress.com/?p=260</guid>
		<description><![CDATA[Cartoon by Medi Belortaja I&#8217;ve read numerous web accessibilty books and had the pleasure of hearing a screen reader in action and used properly. In one night I became baffled about how the title attribute should be used in a url link. From my understanding and I could be wrong but the title attribute should [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=260&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Destination, planet Earth?" src="http://www.toonpool.com/user/707/files/destination_to_earth_665485.jpg" alt="" width="500" height="370" /><br />
<em>Cartoon by</em> <a href="http://www.toonpool.com/cartoons/destination%20to%20earth_66548">Medi Belortaja </a></p>
<p>I&#8217;ve read numerous web accessibilty books and had the pleasure of hearing a screen reader in action and used properly.</p>
<p>In one night I became baffled about how the title attribute should be used in a url link. From my understanding and I could be wrong but the title attribute should be used to inform the user of what to expect on the forth coming page.</p>
<p>Now some screen readers don&#8217;t actually read out the titles so as recommended the link should be self explanatory as possible; none of that <a title="(Dead link) bad title" href="#">click here</a> rubbish but more like  <a title="(Dead link) No more Mr Baldy!" href="#">Darren&#8217;s hair has reappeared!</a></p>
<p>Ok back to my question, Looking through an Accessibility portfolio and being rather nosey I checked out the source code, you can always find some coding nuggets there and noticed that the links featured the same title attribute as their destination page or the name of the link or none at all</p>
<p>Example:</p>
<p><code>&lt;a href="travel.html" title="travel"&gt;travel&lt;/a&gt;</code></p>
<p>or I would come across one with no title attribure:</p>
<p><code>&lt;a href="travel.html"&gt;travel&lt;/a&gt;</code></p>
<p>I would have done:</p>
<p><code>&lt;a href="travel.html" title="Create your own perfect package"&gt;travel&lt;/a&gt;</code></p>
<p>Now in my example I think I&#8217;ve informed the user the travel page if they where to click it, will allow you to create your own package holiday,  select dates, destinations, hotels and transport and then book it.  Now is that bad? I honestly thought that&#8217;s how links should be.</p>
<p>I can see in my example that for users of screen readers long titles can be rather too long and soon become annoying.</p>
<p>Can anyone point me in the right direction, share their thoughts and educate me?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrenazzopardi.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrenazzopardi.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrenazzopardi.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrenazzopardi.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrenazzopardi.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrenazzopardi.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrenazzopardi.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrenazzopardi.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrenazzopardi.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrenazzopardi.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrenazzopardi.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrenazzopardi.wordpress.com/260/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrenazzopardi.wordpress.com/260/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrenazzopardi.wordpress.com/260/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=260&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://darrenazzopardi.wordpress.com/2010/03/29/title-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/820df6bfc1b6014e81011db93db9a131?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dazzclub</media:title>
		</media:content>

		<media:content url="http://www.toonpool.com/user/707/files/destination_to_earth_665485.jpg" medium="image">
			<media:title type="html">Destination, planet Earth?</media:title>
		</media:content>
	</item>
		<item>
		<title>and your budget is?</title>
		<link>http://darrenazzopardi.wordpress.com/2010/03/26/and-your-budget-is/</link>
		<comments>http://darrenazzopardi.wordpress.com/2010/03/26/and-your-budget-is/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 09:19:49 +0000</pubDate>
		<dc:creator>dazzclub</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://darrenazzopardi.wordpress.com/?p=243</guid>
		<description><![CDATA[Cartoon by alexfalcocartoons It&#8217;s always been hard for me to ask the client what their budget is. I know they want to save or at least keep cost down and I want to know they&#8217;re serious. Back in the day when I was a whore of a web designer I took anything from £90 &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=243&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="  " title="Save money or invest" src="http://www.toonpool.com/user/562/files/saving_water_379585.jpg" alt="budgeting...." width="425" height="282" /></p>
<p><em>Cartoon by</em> <a title="See more cartoons by Alex Falco" href="http://www.toonpool.com/cartoons/saving%20water_37958#">alexfalcocartoons</a></p>
<p>It&#8217;s always been hard for me to ask the client what their budget is. I know they want to save or at least keep cost down and I want to know they&#8217;re serious.</p>
<p>Back in the day when I was a whore of a web designer I took anything from £90 &#8211; £200 for a design. Disregard the variety of prices I would charge<em> (infact I didn&#8217;t charge, they would say a sum and I&#8217;d agree )</em> the quality of work wasn&#8217;t different.</p>
<p>Whether it was at the high or low end I still spent hours on it. If for some reason two of my clients met and began to discuss prices, again they&#8217;d soon realise nothing sets them apart from the price. Every site I designed got the same attention, if it could be improved I&#8217;ll do it, I wanted to be proud of it.</p>
<p>With time and experience that changed. It was hard to let pricing dictate the design of the site. I&#8217;m not saying you&#8217;ll get a poor website if you pay peanuts but no bells and whistles for you is in order. I had to get realistic, I rarely get projects completed within a month. To spend an entire month on a project for £600 is not cost effective, at all.</p>
<p>If a client asks my hourly rate I tell them but that&#8217;s usually followed by me explaining the need to understand their project to give a realistic price. I can suggest them a figure to play with but then again when do you ever get a client that knows exactly what they want?</p>
<p>Recently I was working on a very exciting project and the budget was even better, in the thousands. I was able to slot this project in and dedicate my time on this, something that&#8217;s rare as I&#8217;m always chopping and changing. Everything went well, meetings where fine and they seemed happy. I wrote an email to clarify the budget, infact the budget I suggested was short so they where saving a few bob or two. I was ready to invest my time and with the budget I was offered knew they where serious.</p>
<p>Bamn! that&#8217;s how it felt, communication was gone no more emails and no more phone calls. I emailed them several times asking whether it&#8217;s still on, postponed or if they didn&#8217;t like me or my approach. I was happy to know that maybe they simply pulled out but would have liked to receive some feedback. Was there something I could improve on? I&#8217;m left wondering.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrenazzopardi.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrenazzopardi.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrenazzopardi.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrenazzopardi.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrenazzopardi.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrenazzopardi.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrenazzopardi.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrenazzopardi.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrenazzopardi.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrenazzopardi.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrenazzopardi.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrenazzopardi.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrenazzopardi.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrenazzopardi.wordpress.com/243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=243&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://darrenazzopardi.wordpress.com/2010/03/26/and-your-budget-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/820df6bfc1b6014e81011db93db9a131?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dazzclub</media:title>
		</media:content>

		<media:content url="http://www.toonpool.com/user/562/files/saving_water_379585.jpg" medium="image">
			<media:title type="html">Save money or invest</media:title>
		</media:content>
	</item>
		<item>
		<title>Running a business, now you need a website</title>
		<link>http://darrenazzopardi.wordpress.com/2010/03/25/running-a-business-now-you-need-a-website/</link>
		<comments>http://darrenazzopardi.wordpress.com/2010/03/25/running-a-business-now-you-need-a-website/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 12:40:52 +0000</pubDate>
		<dc:creator>dazzclub</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://darrenazzopardi.wordpress.com/?p=207</guid>
		<description><![CDATA[Cartoon by LAP You&#8217;ve been ruthless and you&#8217;ve watched over the budget like a hawk justifying every expenditure. No longer in the rat race you&#8217;ve made your own path and answer only to yourself-ish. Months of late nights, early mornings, working like a dog and missing those family occasions. You own your own business. Seems [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=207&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p><img class="alignnone" src="http://www.toonpool.com/user/3107/files/the_page_cannot_be_displayed_380415.jpg" alt="" width="500" height="406" /></p>
<p><em>Cartoon by</em> <a href="http://www.toonpool.com/artists/LAP_3107"><a href="http://www.toonpool.com/cartoons/The%20page%20cannot%20be%20displayed_38041">LAP<br />
</a></a></p>
<p>You&#8217;ve been ruthless and you&#8217;ve watched over the budget like a hawk  justifying every expenditure. No longer in the rat race you&#8217;ve made your  own path and answer only to yourself<em>-ish</em>.</p>
<p>Months of late nights, early mornings, working like a dog and missing  those family occasions. You own your own business. Seems like those  sacrifices have been worth it.</p>
<p><strong>Let me just say well done. </strong></p>
<p>One thing bothers me. That ruthless businessman <em>(or woman)</em> attitude seems to go out the window when you take those first steps into  having a website . Making your  online debut can be messy, tricky or  even scary. But it shouldn&#8217;t be.</p>
<p>Working as web designer you familiarise yourself with the key-points.  It amazes me when  these are missed. To be fair that&#8217;s not your job so it&#8217;s not all  your fault, for now.</p>
<p>I would like to speak of some issues that you may seem to be wrestling with  when thinking about owning a site. Such as what areas to cover, what to  discuss, how to plan and what&#8217;s the best way to approach. I want to arm  you with the some little golden nuggets that should get you the website you deserve-<em>solid  foundation to work from</em>.</p>
<p>They come in no particular order and this is my own advice so  take things on board if you like or not.</p>
<ul>
<li>
<h4>Take your time</h4>
<p>Firstly there&#8217;s no rush in getting your site live.<abbr title="there  are some exceptions">*</abbr></p>
<p>All the important stages happen before the launch. My tip here would  be to be honest with yourself. You don&#8217;t know much about web design, in  fact you don&#8217;t know zip. When I don&#8217;t know something I always try to  familiarise myself with the subject matter. I don&#8217;t want to become an expert but enough  to cover the basics. It&#8217;s like giving a speech or a presentation, only  rarely can you do it off the top of your head. So make the time to get a  better, get some knowledge and get a bit of the background  information so you know what it takes to build a site. I recommend 2 books  that I find vital in allowing you to fully comprehend the scope of what  it takes to build a site.</p>
<p>* Obviously your working to a deadline, so in a  indirect way there is a rush but my point is to prepare, gather notes,  ideas or anything, just plan before you make the leap.</p>
<ul>
<li><a title="A simple approach to applying graphic design to modern web design" href="http://www.fivesimplesteps.co.uk/">A Practical Guide to Designing for the Web (Five Simple Steps)</a> by  Mark Boulton</li>
<li><a title="The job of planning, launching, and managing a site often falls to people who have little or no experience in web design or development" href="http://boagworld.com/websiteownersmanual/">Website Owner&#8217;s Manual</a> by Paul Boag</li>
</ul>
<p>If you can&#8217;t read them both <em>(I&#8217;m getting mad!!)</em> at least try  one <em>(please!)</em>. If you&#8217;re not a fan of reading then I don&#8217;t  care- you do want your business to succeed?! What&#8217;s 400 pages of self  empowerment compared to months of maintaining, stressing and arguing  over a website that gives your company a bad impression and bleeds  money. Give yourself a fighting chance! I&#8217;m trying  to tip the scales in your favour so when you do go to a design agency, you  know what questions to ask. You&#8217;re not sitting there nodding away  letting them bamboozle you with technical jargon. You can at least  throw a question forward  without feeling a little bit sheepish.</p>
<p>Another reason I&#8217;m saying this is so the next time an agency  quotes you a figure of £400 &#8211; £600 you at least know what to expect. In  the world of web, those prices are rather cheap. Understandably not for  you, that&#8217;s alot of money. No one likes to pay out anything and in  return get a dogs muck of a website.</p>
<p>I&#8217;m asked, &#8216;Darren, you&#8217;re a web designer? Can you build me a site?  It&#8217;s about..[insert what you offer here]&#8230;how long will that take?&#8217;</p>
<p>I still get annoyed with myself when I try to give an immediate time  frame and pricing. I&#8217;ve learnt the hard way. A website can&#8217;t be ordered  like a fish and chips. Because these fish and chips are bespoke. And I  tell you this, when they are offered this way and you fall for it you  have yourself to blame. Especially when I&#8217;ve asked you to read those  books!</p>
<p>Some might argue that you don&#8217;t need to know what it takes to build a  site. People still think its a &#8220;bish bash bosh&#8221; job. Copy and paste  some text and your done. It&#8217;s not, there are many factors to be considered. If you did read those books maybe you now have respect for the  art of website building.</li>
<li>
<h4>Planning</h4>
<p>You have an idea of what you <em>kinda</em> want the website to  feature. Get them down on paper. You could start by writing down pages  you want to have, contact us, gallery, products, goals, objections, etc.</p>
<p>Another  idea of how you could get started is to <em>play the role  of a user</em>. Pretend your using the site and talk out loud, tell  yourself what you are doing, what you need or what your looking for. It&#8217;s more  enjoyable like this, you start to take an interest and consider factors  you would have normally overlooked.</p>
<p>Draw any ideas you may have, but don&#8217;t get hung up about  it not being a master piece. It&#8217;s there to get your thoughts going, to get  the ball rolling.</p>
<p>I could go in depth but risk losing you. I just want you to  atleast consider your sites content, rather than saying, &#8220;I want a 5  page website&#8221;.</li>
<li>
<h4>It&#8217;s Business</h4>
<p>It&#8217;s a good idea to remember why you&#8217;ve chosen to have a web site.  It&#8217;s not because everyone has one or because you simply can. You&#8217;re  having a website to communicate and to make money.  Never forget this. Everything you do to your site is geared inevitably  towards making money. Whether the changes happen behind the site or  you&#8217;ve re-organised the product page. That change is to help the user  find what they want quickly and make a purchase (your goals could be  different here)</p>
<p>Setting out clear goals will help you keep on track and stop you from  meandering through a rocky path that is running a website.</li>
<li>
<h4>Your aims</h4>
<p>Simple as it sounds, this main point is never thought about. With a  pen and paper write down what you want your customers to do? What  service are you offering? What are your products?</p>
<h5>Examples could be;</h5>
<ul>
<li>join your mailing list</li>
<li>subscribe to your news letter</li>
<li>buy your products</li>
<li>get technical information</li>
</ul>
<p>That&#8217;s just a few, no matter how small they seem just write it down.  These will become invaluable when building your site.</li>
<li>
<h4>No one cares about you</h4>
<p>Don&#8217;t take it personally. Remember your trying to sell your products  not your business moto.</p>
<p>We&#8217;re ruthless and specific when we are online, we visit sites for a  reason. We get what we want as easily and  painless as possible. We  don&#8217;t want to read about companies history, how great you are, how many  awards you&#8217;ve won or your years of experience. Leave that self praising  rubbish at the door.</p>
<p>There&#8217;s nothing wrong with this type of information, its still  important but putting all this on your home page just makes it harder  for people to quickly understand what you offer and the benefits of your  products.</p>
<p>You have a small widow of opportunity to tell your customer what you  offer-<em>don&#8217;t waste it!</em></li>
<li>
<h4>Get to the point</h4>
<p>You really haven&#8217;t got time to spare. Seconds tick. You&#8217;ve got an A-level, a degree or whatever&#8217;s credible these days in English Literature  and you feel it&#8217;s time to shine. Honestly, I don&#8217;t want my vocabulary  stretched, leave that for the novels.</p>
<p>Use direct language, pin point paragraphs and words that gets your  message across. The quicker the customer understands what you offer, greater  the chance you have of making a sale.</li>
<li>
<h4>Remember it&#8217;s alive</h4>
<p>Launching your site is only step one <em>(sorry)</em>.</p>
<p>Think of your site as a living organism. Silly as it sounds it needs  constant attention, feeding, pampering, whatever. Just don&#8217;t ignore it!</p>
<p>Being on the ball, looking at your site, going over it and most  importantly listening to your customers will help you plan future  changes you may need to stay ahead. Taking the time to look and listen  to feedback you get. This will make the changes feel part of a natural progression  rather than a chore.</p>
<p>This method is much better than leaving your site on the digital  shelf for years only to have a total redesign later on-<em>then to cock it  up, again. </em></li>
<li>
<h4><abbr title="Search Engine Optimisation">SEO</abbr> &#8211; Don&#8217;t be  scared</h4>
<p>The dreaded abbreviation that sends piss to pants. There&#8217;s a certain  mystic when it comes to this. Most people aren&#8217;t clued up in this field  so they assume it&#8217;s the work of magicians. Well it&#8217;s not. In fact, once  you get a basic understanding you&#8217;ll love it.</p>
<p>There&#8217;s an absurd amount of information on this subject. And again,  SEO takes time. Don&#8217;t be fooled by some agencies that bang on about  getting you to number one in a week for £45 a month or something.</p>
<p>SEO is an area all on its own. Some people find it pointless where  others jizz in their pants reading and researching new ways of  understanding it.</p>
<p>SEO is the act of fine tuning your website to your target audience.  It&#8217;s more than few keywords here and there. It&#8217;s about being able to  identify what you do and make sure the right people know about it and to  alert your audience of your products.</p>
<p>Keep in mind that providing the best content for customers is primary.</li>
<li>
<h4>Pricing</h4>
<p>My  best advice would be to contact these guys yourself and arrange a  meeting. Yes you could be tempted by a one stop shop offer of  £600 but a good agency or designer will look into your brief and ask you  the right questions.</p>
<p><strong>Your website is an investment, take it seriously and be prepared to  pay good money.</strong></p>
<p>Maybe that&#8217;s put you off and you fancy building it yourself to save  some money. Don&#8217;t use a site builder. Yes you&#8217;ve saved money and your  possibly happy you&#8217;ve built your own site. At what cost? I can buy  the tools and equipment to make a family dinning table. But that doesn&#8217;t  make me a carpenter. I lack the all important in-depth knowledge and  skill that only time can bring &#8211; What type of wood to use? How do I  prepare the wood? What&#8217;s the best technique? Carpenters still exist even  though you can knock up some furniture from IKEA. Its the craftsman  ship that sets them apart, the attention to detail.</li>
<li>
<h4>Look at their past projects</h4>
<p>So you like the look of this agency or like the way this freelancer  talks. You&#8217;re close to signing up and working with them.</p>
<p>Pause.</p>
<p>look at their portfolio, even better phone the websites number and  find out if they actually built it or are just lying scumbags that rip   off other designers work. Phone a few, 3 maybe. Because maybe, the  number displayed on that site is re-routed back to their office.</li>
<li>
<h4>Smell them out</h4>
<p>I enjoy looking at a so called web design agency sites and picking  them apart. I can see the flaws, more to the point I can smell the  bullshit. It&#8217;s hard for me to give you pointers, what works for me might  not work for you. So what I&#8217;m trying to say here is look around, ask  questions, have meetings and try to get the feeling of confidence. Does  the designer put you at ease? Do you trust them with your audience, and  to introduce your site for the first time?</li>
<li>
<h4>Sounds funny, but trust your designer or agency</h4>
<p>I know I&#8217;ve been rather negative in this field but when you&#8217;ve found  one you trust, who knows their stuff. Keep hold of them. I can easily  compare this scenario to finding a good mechanic.</p>
<p>Good web designers know how to plan, understand typography, have  copy-writing knowledge, are familiar with information architecture,  findability issues and are aware usability testing. On  top of this they have the knowledge to code your site to a standard and make it  accessible.</li>
<li>
<h4>Feedback</h4>
<p>This can be acquired at any stage but ideally at the start. Gathering  data of this nature is the best foundation you can have. At the start  when you don&#8217;t even have a site, start quizzing your sales colleague ask  them to build list of the most common bit of information being  requested, from getting directions to your business to customers asking  about particular products. Just be aware of the importance of customer  feedback.</p>
<p>In the early phase as your site is being built, your designer and  yourself should be testing it. Making sure your aims are easily  understood and access to your products are done easily. Fine tune it,  get friends or family and ask them to find something. Watch what they  do and take not of what there saying. If possible ask them to think out  loud.</li>
<li>
<h4>It&#8217;s a product</h4>
<p>At the end of the day your letting your site be used by who ever is  surfing the web. Users vary from age, discipline and ability. Your site  is going to be used by everyone so why don&#8217;t you make the time give it a  test run. Ask your designer how he tests your site? Your  looking for is at least some sort of testing. Think about it. In what  other areas of design (or anything else you can think of) creates a  product with no user input from their target audience (or ordinary web  users)? Do we know it atleast works, that users find it easy to navigate  their way around your site and find what they want?</li>
</ul>
<p>Thank you for reading.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrenazzopardi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrenazzopardi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrenazzopardi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrenazzopardi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrenazzopardi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrenazzopardi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrenazzopardi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrenazzopardi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrenazzopardi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrenazzopardi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrenazzopardi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrenazzopardi.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrenazzopardi.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrenazzopardi.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=207&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://darrenazzopardi.wordpress.com/2010/03/25/running-a-business-now-you-need-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/820df6bfc1b6014e81011db93db9a131?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dazzclub</media:title>
		</media:content>

		<media:content url="http://www.toonpool.com/user/3107/files/the_page_cannot_be_displayed_380415.jpg" medium="image" />
	</item>
		<item>
		<title>Did you have a mentor?</title>
		<link>http://darrenazzopardi.wordpress.com/2010/03/22/did-you-have-a-mentor/</link>
		<comments>http://darrenazzopardi.wordpress.com/2010/03/22/did-you-have-a-mentor/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 23:36:07 +0000</pubDate>
		<dc:creator>dazzclub</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://darrenazzopardi.wordpress.com/?p=186</guid>
		<description><![CDATA[Cartoon by Mike Dater A While back, I shared an office space with a web design agency in Hull. The days of staying in and working from home began to get to me. I&#8217;ll easily admit I was becoming a recluse. I couldn&#8217;t see it personally, but my passion for my job was on a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=186&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.toonpool.com/user/1377/files/first_you_learn_to_sweep_183325.jpg" alt="" width="403" height="499" /></p>
<p><em>Cartoon by</em> <a href="http://www.toonpool.com/artists/Mike%20Dater_1377">Mike Dater</a></p>
<p>A While back, I shared an office space with a <a title="From simple promotional sites to full ecommerce solutions all with content management" href="http://www.templarinternet.com/">web design agency in Hull</a>. The days of staying in and working from home began to get to me. I&#8217;ll easily admit I was becoming a recluse. I couldn&#8217;t see it personally, but my passion for my job was on a downward spiral and I was contemplating a change in direction. This scared me. I couldn&#8217;t see myself doing anything else. I felt so comfortable but something was getting to me.</p>
<p>I took a chance and placed an ad on <a title="give you a simple and easy-to-use tool that lets you quickly find you might be looking for" href="http://www.gumtree.com/">gumtree</a>. I was asking for a desk and in return I&#8217;d share my knowledge. Wasn&#8217;t expecting much.</p>
<p>Months passed since the ad and then out of the blue I got an email. <a title="From simple promotional sites to full ecommerce solutions all with content managemen" href="http://www.templarinternet.com/">Templar Communications</a> opened their doors and soon I was working from an office in the town centre. The simple act of leaving the house, getting the bus and grabbing a coffee before work was great, my enthusiasm started to come back.</p>
<p>I&#8217;ve never looked upto anyone, especially in the world of web. Yes there are designers that I like and books I&#8217;ve enjoyed immensely. But never that teacher-pupil, wax-on, wax-off kinda thing.</p>
<p>That soon changed.</p>
<p>His name is Graham Bolton. His talent, his passion and his business mind kept me in continuous awe. I could say this was a man crush. He had ethics. Web design ethics. He stood his ground when he thought a clients request was absurd. He wasn&#8217;t rude, didn&#8217;t tell them they where stupid, didn&#8217;t moan that clients just don&#8217;t get it. He explained it. With such clarity. The clients would tell him want they wanted and he would paint a picture, let them see the possible problems. Gradually the client would see it.</p>
<p>He wasn&#8217;t one to roll over just because they paid the bills. He was willing to lose a client. He had his reputation to think about. He wasn&#8217;t cocky, he was happy with what he knew and he wanted to share it and always looked at the bigger picture. This ingrained on me. I didn&#8217;t realise what sort of impact it left.</p>
<p>Too many times, when interviewing a client I would note down what they wanted, happy to tick their boxes.</p>
<p>One thing he said has stuck with me. Whilst sorting out the offices on the weekend he turned and said.</p>
<blockquote><p>One thing I want you to learn when you leave from here is to ask questions. Never take things at face value.</p></blockquote>
<p>You can easily use this for life in general. Which I did.</p>
<p>Meeting clients was never something I disliked, but when doing so I still felt like a graduate from uni,  I felt insignificant. I didn&#8217;t feel like a professional. I felt I had to earn it, start at the bottom and work myself up. I still feel like this now, everyday I earn my position.</p>
<p>Only recently have I accepted that I&#8217;m an expert and that clients look at me to lead the way, not to be a nodding dog. Not to then go home and moan at what they want is  ridiculous. They looked at me for direction. Excepting that position felt like a huge burden. But if I wanted to get there this was something I had to deal with.</p>
<p>Being around someone with such passion opened my eyes to what I&#8217;m about.</p>
<p>Thank you Graham Bolton. Friend. Teacher. Mentor.</p>
<p>Oh, I blame him for introducing the devil that is <em>20 Marlboro red</em>.</p>
<p>As the title asks, did you have a mentor? What advice did they give you?Are you in the position to be such an influence?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/darrenazzopardi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/darrenazzopardi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/darrenazzopardi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/darrenazzopardi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/darrenazzopardi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/darrenazzopardi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/darrenazzopardi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/darrenazzopardi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/darrenazzopardi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/darrenazzopardi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/darrenazzopardi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/darrenazzopardi.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/darrenazzopardi.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/darrenazzopardi.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=darrenazzopardi.wordpress.com&amp;blog=900003&amp;post=186&amp;subd=darrenazzopardi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://darrenazzopardi.wordpress.com/2010/03/22/did-you-have-a-mentor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/820df6bfc1b6014e81011db93db9a131?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dazzclub</media:title>
		</media:content>

		<media:content url="http://www.toonpool.com/user/1377/files/first_you_learn_to_sweep_183325.jpg" medium="image" />
	</item>
	</channel>
</rss>
