<?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>W3Solutions™</title>
	<atom:link href="http://w3solutions.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://w3solutions.org/blog</link>
	<description>Blog about web development and graphic design standards</description>
	<lastBuildDate>Mon, 23 Aug 2010 21:20:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Twitter&#8217;s New Feature &#8220;Fast Follow&#8221;</title>
		<link>http://w3solutions.org/blog/twitters-new-feature-fast-follow/</link>
		<comments>http://w3solutions.org/blog/twitters-new-feature-fast-follow/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 23:49:50 +0000</pubDate>
		<dc:creator>Marc Cesarec</dc:creator>
				<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://w3solutions.org/blog/?p=222</guid>
		<description><![CDATA[Twitter is unveiling a new way to read tweets. Best of all, you don't even need a twitter account! Now people who don't necessarily want to use twitter to tweet about themselves have easy access to your tweets using their phone.]]></description>
			<content:encoded><![CDATA[<p>Twitter has introduced a new feature called “Fast Follow” that makes it easy to follow anyone via SMS, even if you don’t have a Twitter account (if you’re located in the U.S. at least).</p>
<p>To use it, all you need to do is text “follow [username]” to Twitter’s shortcode of 40404. From there, you’ll start receiving all of that user’s updates via text message.</p>
<p>Twitter seems to envision Fast Follow being used largely in advertising. The company encourages people to, “Try it out the next time you see a Twitter @username at a restaurant or store, on a billboard or on TV, or if you hear one mentioned on the radio.”</p>
<p>While a fairly simple feature, it’s an interesting twist that could ultimately bring Twitter to the tens of millions of <a href="http://mashable.com/2009/06/10/twitter-users-inactive/" title="Inactive twitter users" target="_blank">passive users</a> who occasionally consume tweets from their favorite people or brands but don’t care to tweet themselves. Essentially, the service can simply act as a text message-based newsletter of sorts.</p>
<p>Twitter’s <a href="http://blog.twitter.com/2010/08/introducing-fast-follow-and-other-sms.html" title="Twitter's fast follow article" target="_blank">blog</a> has some more details on the feature and a few other text message features being made available with the service.</p>
<p>View the <a href="http://goo.gl/Nc7P" title="Mashable.com" target="_blank">original post</a> at Mashable.</p>
]]></content:encoded>
			<wfw:commentRss>http://w3solutions.org/blog/twitters-new-feature-fast-follow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quality Designers Build Quality Websites</title>
		<link>http://w3solutions.org/blog/quality-web-designers-build-quality-websites/</link>
		<comments>http://w3solutions.org/blog/quality-web-designers-build-quality-websites/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 19:12:20 +0000</pubDate>
		<dc:creator>Marc Cesarec</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://w3solutions.org/blog/?p=106</guid>
		<description><![CDATA[<p>Far too often, designers claim to be the best, but they have bad design habits. Learn how to look at a website's code to be sure that your designer is doing everything they say they are. If they aren't following modern coding standards, you are wasting time and money both now and in the future.</p>]]></description>
			<content:encoded><![CDATA[<p>Building a website is like building a house. You have a lot of pages &#8212; or rooms &#8212; to build. Likely, you will have browsed other sites and have gotten an idea for your own site. So, you meet with your designer and explain what you are looking for. Shortly, you will have a mock-up of your layout &#8212 like your house&#8217;s blueprint.</p>
<p>Using the layout, your designer will begin to construct the foundation of your website, the page&#8217;s skeleton. Your website won&#8217;t match what was initially planned if your designer doesn&#8217;t follow current coding standards. Designers are creating cleaner, faster code by always following <a href="http://www.w3.org/standards/" title="W3C Coding Standards">w3c standards</a> and assuring your website will be cross-platform and cross-browser compatible for years and years to come.</p>
<p>By using what you learn today, you will be well-equipped to determine if your designer is using up-to-date code or running you around the bush.</p>
<h3>Before we being</h3>
<p>You can check a site&#8217;s view source to see if your designer is using modern coding standards. To do that, right click on the web page you want to see and select &#8220;View Page Source&#8221; or &#8220;View Source Code&#8221; button depending on what browser you are using.</p>
<h3>XHTML Coding Standards</h3>
<p><b>Have HTML pages?</b> PHP and ASP are great languages to code your site in. They have built in features which will help organize your information and, best of all, PHP and ASP are widely available. You may have it without even knowing it!</p>
<p><b>Do you have a Doctype?</b> It should be the first line of code one your page. Not having a doctype or using the wrong one can have bad results on your site. The most common outcome is that it isn&#8217;t browser compatible.</p>
<p><b>Table Frameworks are a no-no.</b> Tables have their time and place, and thats for tabular data. When you start using tables to lay out your site, it multiplies your code by roughly four times what it should be. All that useless code just adds to the time it takes to load your page.</p>
<p><b>Follow modern coding standards!</b> Tags like &lt;font&gt;, &lt;basefont&gt; and &lt;center&gt; are considered depreciated code. Attributes of align, bgcolor, and color are also big no-no&#8217;s. A better solution would be to use good ol&#8217; CSS.</p>
<p><b>Be sure that you have valid code!</b> Clean code means a better cross-browser, cross-platform result that will have support for many many years. Check to see if you site is using valid <a href="http://validator.w3.org/check?uri=http://www.w3solutions.org/&#038;charset=(detect+automatically)&#038;doctype=Inline&#038;group=0&#038;user-agent=W3C_Validator/1.1" title="Validate your site's html." target="_blank">code</a>, <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://www.w3solutions.org&#038;profile=css3&#038;usermedium=all&#038;warning=1&#038;lang=en" title="Validate your site's CSS" target="_blank">cascading style sheets</a>, and <a href="http://validator.w3.org/checklink/checklink?uri=http://w3solutions.org&#038;hide_type=all&#038;depth=&#038;check=Check#results1" title="Validate your site's links." target="_blank">links</a>.</p>
<h3>Navigation and Link Standards</h3>
<p><b>Your navigation should be easy to find.</b> Its the highway of your website which quickly takes you from one page to the next. If your navigation is hidden from your visitors they have one button left to turn to &#8211; the back button.</p>
<p><b>Keep your links static.</b> Links which blink or continue to change colors aren&#8217;t necessary. Try keeping your links pure xhtml/css with definite stats: Normal, Hover, Active.</p>
<h3>Content Standards</h3>
<p><b>Frames and iFrames are also a big no-no.</b> However, they are used inappropriately far less than tables are. Keep all frames down to a minimum &#8211; preferably zero unless you need to use them. Your content will have a much better flow.</p>
<p><b>Your content needs to be readable, at all times.</b> Its not just good advice, you should look into the <a href="http://en.wikipedia.org/wiki/Section_508" title="US Section 508" target="_blank">US Section 508</a> and the <a href="http://en.wikipedia.org/wiki/Disability_Discrimination_Act_1995" title="UK Disability Discrimination Act" target="_blank">UK Disability Discrimination Act</a>. In summary, they say that people with disabilities will want to use your site so you need to accommodate them.</p>
<p><b>See any important text in your sites images?</b> Google and narrators can not read the text you place in your images. Even worse, your visitors can&#8217;t click or copy any of that text. Its a lose-lose situation for your Search Engine Optimization and visitors.</p>
<h3>Image Standards</h3>
<p><b>Blurry images make bad impressions.</b> If an image is worth a thousand words, what are those thousand words saying about your website? Be sure that your images are clear and concise to put your best foot forward.</p>
<p><b>Images should illustrate, not deviate.</b> The point of images and graphics are to enhance your users experience. By using images to illustrate your point your users will find what they are looking for much quicker. Adding random images just to make your site look cool will draw your users eye away from your content if it doesn&#8217;t fit within your theme.</p>
<p><b>Ever see images not matching the background?</b> Hopefully not, but this is actually a fairly common problem. If your image is lighter or darker than the background, and it wasn&#8217;t supposed to be, it creates quite an eyesore. This is normally the first incorrect thing I notice on a website.</p>
<h3>Search Engine Optimization</h3>
<p><b>Don&#8217;t use a link builder!</b> Getting a large volume of links to your site is good, but they must be quality links. Any random link won&#8217;t increase your site for the keywords you need. Even worse, you could find yourself flagged as a spammer fpr using those techniques!</p>
<p><b>Sites should have a hierarchy.</b> Try building a cluster chart of your information. Within a few minutes you will the starting point of what your sites hierarchy should look like.</p>
<h3>Final Thoughts</h3>
<p>Being a quality web designer is hard work. Hopefully what you learned today will help you decide if your current designer and developer is or isn&#8217;t of high quality.</p>
<p>Got or find a bad quality website? Feel free to post the url to the site below so I can take a peek. I&#8217;d really like to look at what you find!</p>
]]></content:encoded>
			<wfw:commentRss>http://w3solutions.org/blog/quality-web-designers-build-quality-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Short Website Analysis Checklist</title>
		<link>http://w3solutions.org/blog/short-website-analysis-checklist/</link>
		<comments>http://w3solutions.org/blog/short-website-analysis-checklist/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 20:30:55 +0000</pubDate>
		<dc:creator>Marc Cesarec</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://w3solutions.org/blog/?p=41</guid>
		<description><![CDATA[<p>Visitors are coming to your website, but are they finding what they need? If they can't find what they need quickly and easily, they will leave your site and seek another. By using our short website analysis checklist, you can easily discover some basic problem areas on your website.</p>]]></description>
			<content:encoded><![CDATA[<p>Worried your site is neither clear or concise. Try my do it yourself checklist to determine if your website meets your needs and the needs of your visitors.</p>
<h3>Is the content of your website easy to read?</h3>
<p>It has often been said that &#8220;Content is Key&#8221; when it comes to search engine optimization. Because of this, people have spent hours mulling through words to accurately describe who they are and what they do to gain high ranking search positions.</p>
<p>Take the time to re-read all of that hand selected content and check its legibility. A site which is hard to read will disinterest its visitors possibly costing all of that search engine optimization (SEO) work.</p>
<h3>Is your website easy to navigate?</h3>
<p>Users don&#8217;t read websites, they scan over them to find the information they need. Unless the information they need is on the home page they are likely looking for a link or article header. Don&#8217;t hide your navigation or make it overly complicated. A well organized and simple set up will work best.</p>
<h3>Was your website built to achieve a desired goal?</h3>
<p>During the creation of your website did you and your designers talk about the whole purpose of your website? You may have wanted to have a &#8220;kick-ass&#8221; design to attract visitors to your site, but then what?</p>
<p>A website is more than just a page on the internet. It is an inexpensive interactive billboard usable anywhere you can connect to the world wide web. The best part is that your billboard has lots of room to be used.</p>
<h3>Does your website boost your brand?</h3>
<p>I&#8217;m sure you&#8217;ve spent a long time making your business look just the way you want it. Countless hours of time has been spent putting everything in the right place to send your customer the right image. Why should your website be any different? Your website should emphasize the look of the brand you worked so hard to build. By competing with your brand you are only competing with yourself.</p>
<h3>Final Thoughts</h3>
<p>I encourage you to sit down with your web designer and really talk about the goals of your website. I often see people paying for sites which aren&#8217;t doing them justice. If your current designer can&#8217;t give you the table-less design you are looking for, maybe its time to move on to a designer that can.</p>
]]></content:encoded>
			<wfw:commentRss>http://w3solutions.org/blog/short-website-analysis-checklist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

