<?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>WebDesign Bureau of Mauritius &#187; Design</title>
	<atom:link href="http://www.webdesign-bureau-of-mauritius.com/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webdesign-bureau-of-mauritius.com</link>
	<description>Bringing webdesign back home.</description>
	<lastBuildDate>Fri, 23 Jul 2010 15:48:49 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using FIR [Fahrner Image Replacement] &#8211; Part 1 &#8211; Basic implementation.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/fahrner-image-replacement-basic-implementation</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/fahrner-image-replacement-basic-implementation#comments</comments>
		<pubDate>Tue, 20 Jul 2010 09:10:36 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[Fahrner Image Replacement]]></category>
		<category><![CDATA[FIR]]></category>
		<category><![CDATA[image replacement]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1890</guid>
		<description><![CDATA[The FIR, Fahrner Image Replacement, is an old technique that could be the ancestor of Cufòn or the new Typekits or Google Fonts. Following popular demand, here is the first part of a tutorial on the subject showing the basic use of the technique. This will be supercharging your CSS-fu.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/festive-hands-the-structure' rel='bookmark' title='Permanent Link: [Festive Hands] The structure.'>[Festive Hands] The structure.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/simple-link-styling-using-css' rel='bookmark' title='Permanent Link: Simple link styling using CSS.'>Simple link styling using CSS.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/strong-em-tags' rel='bookmark' title='Permanent Link: The secret of strong and em tags.'>The secret of strong and em tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>When <a href="http://www.webdesign-bureau-of-mauritius.com/year-3-cranky-but-working">I launched the new template used on this blog some weeks back</a>, a discussion started out on the use of FIR, the Fahrner Image Replacement technique, on the H3 tags I used on the widgets in the different sidebars. Actually, these are not widgets <em>per se</em> as they are hard coded as small included files to maximise load time. An internal recipe if you want. Anyway, the main idea behind using FIR, which is a really old technique, is that I wanted the specific use of images just for these H3s. As pointed out in the comments, I did not go for heavy DOM scripting driven font apps such as Typekit or Google Fonts just because I had no need for these. <strong>If I had specific fonts to use for bigger portions I would have used those or Cufòn</strong>.</p>
<h2>Usability and SEO.</h2>
<p>FIR is not the only technique you can use for replacing text with images. You have several techniques which you can find out with a simple Google search. There&#8217;s also the sIFR, the Scalabe Inman Flash Replacement, which used Flash to replace text defined by web design guru <a href="http://www.shauninman.com">Shaun Inman</a>. There are 2 reasons why I like the Fahrner Image Replacement technique: usability and SEO. Its use maximises these two core elements. How? Simply because when all CSS are deactivated (which is the case for screen readers) the content is still present. This therefore keeps the content that is associated with the H tag. You can relate to this past article if you want more information on the <a href="http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags">importance of H tags</a>. Please keep in mind that the way I use the FIR solution is a bit different from the original versions. As a matter of fact, I play more on semantics to <a href="http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code">reduce the use of unnecessary HTML tags</a>.</p>
<h2>Implementing FIR.</h2>
<h3>Basis.</h3>
<p>The FIR implementation is fairly simple. You need to have an image file bearing your graphical text. The magic occurs with the use of CSS to get the text out of the way and replace it with this image. This is an <strong>all CSS</strong> technique which means that if there is any CSS failure, the fall back will just be the plain text. So here is a piece of simple code:</p>
<pre class="brush: html">
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;FIR technique&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;h3&gt;This is the text to be replaced&lt;/h3&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The replacement image is the following:<br />
<a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/07/replacement.png"><img src="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/07/replacement.png" alt="" title="Replacement image to illustrate FIR" width="540" height="22" class="alignright size-full wp-image-1893" /></a></p>
<h3>Hiding the text.</h3>
<p>Now let&#8217;s get into the CSS-fu. First of all we need to &#8220;hide the text&#8221;. We cannot use the <code>visibility</code> attributes because we will not be able to exploit the H3 box that is generated. What we can do is reposition the text inside that box. Actually we will reposition it outside the box and even outside the screen, so far that no simple user screen can show the text. Here is how it goes (you will notice that I&#8217;m not using a separate CSS file for this just for the sake of the example):</p>
<pre class="brush: html">
&lt;&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;FIR technique&lt;/title&gt;
	&lt;style type=&quot;text/css&quot;&gt;
		h3{
			text-indent: -9999px;
		}
	&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;h3&gt;This is the text to be replaced&lt;/h3&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The text-indent implementation throws the text at 9999 pixels on the left of the screen, so it will not be visible at all.</p>
<h3>Replacing the text.</h3>
<p>Still with CSS, we need will now get the image to occupy the space left. The image does not actually occupy the space, it sits as a background image and we will be tweaking the heights and widths to adjust to the image.</p>
<pre class="brush: html">
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;FIR technique&lt;/title&gt;
	&lt;style type=&quot;text/css&quot;&gt;
		h3{
			text-indent: -9999px;
			background: url(replacement.png) no-repeat center left;
		}
	&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;h3&gt;This is the text to be replaced&lt;/h3&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The background uses the <code>URL</code> attribute to call the image. The <code>no-repeat</code> attribute says all that it does and the <code>center</code> attribute centres the image vertically and the <code>left</code> attribute sets it to the left. If the image were too large for the containing box we would be using paddings to increase its size. Here for example, we are increasing the top and bottom paddings by 10 pixels each:</p>
<pre class="brush: html">
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;FIR technique&lt;/title&gt;
	&lt;style type=&quot;text/css&quot;&gt;
		h3{
			text-indent: -9999px;
			background: url(replacement.png) no-repeat center left;
			padding: 10px 0;
		}
	&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
	&lt;h3&gt;This is the text to be replaced&lt;/h3&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong><a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/ressource/fir/">See the final result in action here.</a></strong></p>
<div class="discuss">
<h3>Get started&#8230;</h3>
<p>You can now get started with FIR. It is a simple but effective technique. <a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/ressource/fir.zip">You can download the source files here</a>. Keep in mind that this technique does not apply only for H tags but for nearly all the tags that you can use. For example, on this site, the link on the logo actually uses FIR. In the following part, we will see how you can optimise your use of FIR.</p>
<h3>Edit &#038; precisions</h3>
<p><strong>I would like to stress on the fact that this technique is considered as &#8220;fail&#8221; by a lot of people because of the advent of font faces. As I stated in the intro to this article, if I had larger portions of text to change I would have used them. Knowing this technique is handy for your web design culture/education as well as if you have to choose between going for Javascript external calls or CSS for very small elements. Please note that the original technique was not accessible or usable because it used flawed visibility techniques. This version corrects this with the use of the <code>text indent</code> attribute.</strong>
</div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1890&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/festive-hands-the-structure' rel='bookmark' title='Permanent Link: [Festive Hands] The structure.'>[Festive Hands] The structure.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/simple-link-styling-using-css' rel='bookmark' title='Permanent Link: Simple link styling using CSS.'>Simple link styling using CSS.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/strong-em-tags' rel='bookmark' title='Permanent Link: The secret of strong and em tags.'>The secret of strong and em tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/fahrner-image-replacement-basic-implementation/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The secret of strong and em tags.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/strong-em-tags</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/strong-em-tags#comments</comments>
		<pubDate>Mon, 10 May 2010 08:39:37 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1712</guid>
		<description><![CDATA[Find out the real sense, use and utility of the <code>strong</code> and the <code>em</code> tags. What do they have more than the <code>b</code> and <code>i</code> tags and how to use them. You will have a full overview of them all and their use in accessibility and SEO in this article.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/simple-link-styling-using-css' rel='bookmark' title='Permanent Link: Simple link styling using CSS.'>Simple link styling using CSS.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/fahrner-image-replacement-basic-implementation' rel='bookmark' title='Permanent Link: Using FIR [Fahrner Image Replacement] &#8211; Part 1 &#8211; Basic implementation.'>Using FIR [Fahrner Image Replacement] &#8211; Part 1 &#8211; Basic implementation.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking' rel='bookmark' title='Permanent Link: Speeding your page load time will improve your Google ranking.'>Speeding your page load time will improve your Google ranking.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>Some HTML tags often draw confusion because of their similarities with other tags as well as the way in which they display and style content. Examples of these are <code>blockquote</code>, <code>cite</code>, <code>strong</code>, <code>em</code> or <code>i</code>. Each element has features and, though they might accomplish the same goal, they might be altogether really different. Knowing those differences will help improve the markup of some pages. We&#8217;ll concentrate on those important tags that are <code>strong</code>, <code>b</code>,<code>em</code> and <code>i</code>.</p>
<h2>Conveying structure.</h2>
<p>These tags, though small <strong>ARE</strong> important. They are actually more used than we would like to admit and their first use is to give better sense to the content. Putting a word in bold or in italics cannot mean anything else but that the word is important and that we want to draw the reader&#8217;s attention to that word. Well, the W3C has created the <code>strong</code> and <code>em</code> tags so that the markup can convey the same importance given to that word. This is the basic idea of it all. So the first thing you need to know about these tags is that <code>b</code> and <code>i</code> are presentational elements while <code>strong</code> and <code>em</code> are structural. This explains why so many web designers would be telling you to swap the use of <code>b</code> for <code>strong</code> and <code>i</code> for <code>em</code>.</p>
<h2>How and why?</h2>
<p>Big question now. How and why (and probably when) to use these. The question might sprout especially when considering the fact that the <code>b</code> and <code>i</code> elements are not deprecated. Let&#8217;s look at how the W3C defines these tags: <code>em</code> indicates emphasis and <code>strong</code> indicates stronger emphasis. Bingo, the answer has been here all the time. <strong>Both of them are a way to convey importance to a word or a text but there are 2 levels of emphasis here</strong>. This tells you when and why you should use them in your code though <code>b</code> and <code>i</code> would have the same presentational effects but will only be giving information on the fact that the text is in bold or italics or not. </p>
<p>But wait, there&#8217;s more to this. The use of those tags have an impact on the way screen readers and search engine robots see the content.</p>
<h2>Accessibility.</h2>
<p>In terms of accessibility, a screen reader uses the strong and em tags are emphasis levels. Screen readers will, as the W3C puts it, &#8220;change the synthesis parameters, such as volume, pitch and rate accordingly&#8221;. This surely nails it. If we were using <code>b</code> and <code>i</code> to have visual representation we can get to a higher level by using <code>strong</code> and <code>em</code> as they will be doing the same visual job while conveying the structure and working towards more acessibility.</p>
<h2>Search engine optimisation.</h2>
<p>This information should be used regardless of whether you&#8217;re using <code>strong</code>, <code>em</code>, <code>b</code> or <code>i</code> tags. These participate in search engine optimisation. How?</p>
<p>Simply by taking advantage of the human element in the search engine robot&#8217;s algorithm. Here is the general concept: if a word is set under emphasis, it means that the author wants this particular word to stand out of the rest to catch the reader&#8217;s attention. This might therefore be considered as a KEYWORD! This is how the <code>strong</code> and <code>em</code> elements are treated as conveying emphasis, therefore helping SEO.</p>
<p>However, don&#8217;t run over and start stuffing keywords in your content and emphasising them with half a dozen strong and em tags around them. You&#8217;d be telling the robots you&#8217;re spamming them.</p>
<h2>One step further</h2>
<p>Some extra points here. If you need to have presentational enhancements to your strong or em tags the common practice is to wrap a strong tag around an em tag like this:</p>
<pre class="brush: html">
&lt;strong&gt;&lt;em&gt;This is the emphasised text&lt;/em&gt;&lt;/strong&gt;
</pre>
<p>The problem here is that you are giving a level 2 emphasis to an already level 1 emphasised text. This would not mean anything in terms of structure though it will in terms of presentation. Let alone in terms of accessibility. </p>
<p>There is a solution to this: <strong>Cascading Style Sheets</strong>. Let&#8217;s imagine you need all texts in bold and in italics but still want to keep your levels of emphasis, you would style your tags like this:</p>
<pre class="brush: css">
strong {
    font-style: italic;
}
em {
    font-weight: bold;
}
</pre>
<p>Digging even more into this, you can add classes to those tags which will give you 4 visual presentations of emphasised texts while keeping the 2 levels of emphasis.</p>
<pre class="brush: css">
strong {
}
em {
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
</pre>
<p>You would be using them in your code as such.</p>
<pre class="brush: html">
&lt;em class=&quot;bold&quot;&gt;This is the emphasised text&lt;/em&gt;
&lt;strong class=&quot;italic&quot;&gt;This is the emphasised text&lt;/strong&gt;
</pre>
<div class="discuss">
<h3>A final word.</h3>
<p>There you have it then. A full overview of the secret of the <code>strong</code> and the <code>em</code> tags compared to the <code>b</code> and the <code>i</code> tags. Any questions? Drop them in the comments!
</div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1712&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/simple-link-styling-using-css' rel='bookmark' title='Permanent Link: Simple link styling using CSS.'>Simple link styling using CSS.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/fahrner-image-replacement-basic-implementation' rel='bookmark' title='Permanent Link: Using FIR [Fahrner Image Replacement] &#8211; Part 1 &#8211; Basic implementation.'>Using FIR [Fahrner Image Replacement] &#8211; Part 1 &#8211; Basic implementation.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking' rel='bookmark' title='Permanent Link: Speeding your page load time will improve your Google ranking.'>Speeding your page load time will improve your Google ranking.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/strong-em-tags/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimisation (SEO) for &#8220;coming soon&#8221; pages.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/search-engine-optimisation-seo-for-coming-soon-pages</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/search-engine-optimisation-seo-for-coming-soon-pages#comments</comments>
		<pubDate>Fri, 23 Apr 2010 10:22:44 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[coming soon]]></category>
		<category><![CDATA[coming soon page]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1631</guid>
		<description><![CDATA[Search engine optimising a website is not an easy task and even more difficult when it has not been launched. This is old story now. Use a "coming soon" page and go further by optimising it. Find out what you'll get out of this here.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/when-social-media-killed-google' rel='bookmark' title='Permanent Link: When social media killed Google.'>When social media killed Google.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/what-will-change-in-2010-with-search-engines-ranking-google-speaking-only-not-sure-%e2%80%a6' rel='bookmark' title='Permanent Link: What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)'>What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/yahoo-search-switch-bing-engine-google-caffeine' rel='bookmark' title='Permanent Link: Yahoo! Search will be switching to the Bing engine &#8211; anti Google Caffeine?'>Yahoo! Search will be switching to the Bing engine &#8211; anti Google Caffeine?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/new-yahoo-bing-search-engine' rel='bookmark' title='Permanent Link: The new Yahoo! &#038; Bing search engine is being tested.'>The new Yahoo! &#038; Bing search engine is being tested.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/facebook-in-googles-index' rel='bookmark' title='Permanent Link: Facebook in Google&#8217;s index.'>Facebook in Google&#8217;s index.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>You might have been working on a new website project for some time or are planning to launch a new site. You have prepared your project, secured your host and domain name and prepared your database. You will now be heading for either deployment or development but know that your site will not be online for some time. You will most of the time use a dummy, a &#8220;coming soon&#8221; page. This page must be <strong>optimised for search engines</strong>!</p>
<h2 style="clear:both">Anatomy of a &#8220;coming soon&#8221; page.</h2>
<p>Most of you have heard of <strong>&#8220;coming soon&#8221; pages</strong>. There&#8217;s a <a href="http://www.google.com/search?hl=en&#038;q=showcase+of+coming+soon+pages">huge collection of those online teasers</a> for great new apps or sites that will be found on the server some time in the future. For many projects, a deadline for launch is settled, for others the launch can vary from a week to a year in extreme cases, and maybe more&#8230; So it might be a good thing to prepare your <strong>&#8220;coming soon&#8221; page</strong>.</p>
<p><a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/04/dummy.jpg"><img src="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/04/dummy.jpg" alt="" title="A dummy page the &quot;coming soon&quot; page." width="540" height="280" class="alignright size-full wp-image-1638" /></a></p>
<p>Such page usually consists of:</p>
<ul>
<li>Information on what the future website will be about.</li>
<li>What the website will be marketing.</li>
<li>Launching date.</li>
<li>Update/launch signup forms to acquire prospects.</li>
<li>Providing short updates for buzz.</li>
</ul>
<h2>Other uses?</h2>
<p>Many companies use their <strong>&#8220;coming soon&#8221; page</strong> to pre-establish their brand-name by working a lot on the visual impact and the message. Other strategies include the creation of Twitter accounts to gather some followers as well as Facebook pages, all interlinked with the <strong>&#8220;coming soon&#8221; page</strong>. There is a lot to get from such a page but you can try getting even more by SEO-ing the page.</p>
<h2>Why should you SEO it?</h2>
<p>The <strong>&#8220;coming soon&#8221; page</strong> must be optimised for search engines for many reasons. First of all we must take one important fact into consideration with search engines basing ourselves on the Google algorithm. </p>
<h3>The Google Sandbox.</h3>
<p>Google gives weight to older pages and domain names. This is why the Google Sandbox exists. It is here to prevent younger sites from hitting on older ones which already have the big G&#8217;s respect. You might not know when your site will be launched but optimising it will help you have an online presence and above all be out of the Google Sandbox when you launch it if you have been lagging a bit behind.</p>
<h3>Nurturing your future ranking.</h3>
<p>You have competitors on your main keyword on Google. Optimising your <strong>&#8220;coming soon&#8221; page</strong> for that keyword will get the domain name and the page to start competing for better rankings on it. At the time of the launch you might even be surprised by how fast your ranking will be evolving. This is one extremely good reason to do this.</p>
<h3>Getting Google page rank.</h3>
<p>Google page rank is one thing some webmasters live by. Even if it is not as important a factor as it was before it is an indication of the good health of a site. Good page rank is simply built through backlinks and site age. If your site is taking a whole year for launch, why should you lose one year&#8217;s PR and backlinks (which you can start building through comments or links from other sites)? A good example is <a href="http://www.inhousegrind.com/">inhousegrind</a> which has a Google page rank of 3 while still bearing a <strong>&#8220;coming soon&#8221; page</strong>.</p>
<div class="discuss">
<h3>Let&#8217;s talk about this.</h3>
<p>Using search engine <strong>optimisation techniques for &#8220;coming soon&#8221; pages</strong> is a great option on a whole site&#8217;s SEO. All the SEO juice gained over the <strong>&#8220;coming soon</strong>&#8221; period will be redistributed to the other parts of the website when the latter is launched. I have personnally tested and used this technique and the returns are always positive. Why not try it then?
</div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1631&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/when-social-media-killed-google' rel='bookmark' title='Permanent Link: When social media killed Google.'>When social media killed Google.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/what-will-change-in-2010-with-search-engines-ranking-google-speaking-only-not-sure-%e2%80%a6' rel='bookmark' title='Permanent Link: What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)'>What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/yahoo-search-switch-bing-engine-google-caffeine' rel='bookmark' title='Permanent Link: Yahoo! Search will be switching to the Bing engine &#8211; anti Google Caffeine?'>Yahoo! Search will be switching to the Bing engine &#8211; anti Google Caffeine?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/new-yahoo-bing-search-engine' rel='bookmark' title='Permanent Link: The new Yahoo! &#038; Bing search engine is being tested.'>The new Yahoo! &#038; Bing search engine is being tested.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/facebook-in-googles-index' rel='bookmark' title='Permanent Link: Facebook in Google&#8217;s index.'>Facebook in Google&#8217;s index.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/search-engine-optimisation-seo-for-coming-soon-pages/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Dropping unnecessary tags in your HTML code.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code#comments</comments>
		<pubDate>Tue, 20 Apr 2010 09:31:07 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Resource Depot]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[dropping unnecessary tags]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[improving the code]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design mauritius]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1610</guid>
		<description><![CDATA[Improving a page's HTML code can be easy task. It gets better when it is done with some smart edges. Here is a little process I use: dropping off the maximum number of unnecessary tags as can be done while cleaning and optimising the code.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/strong-em-tags' rel='bookmark' title='Permanent Link: The secret of strong and em tags.'>The secret of strong and em tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/festive-hands-the-structure' rel='bookmark' title='Permanent Link: [Festive Hands] The structure.'>[Festive Hands] The structure.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/html-5-wins-over-xhtml-2' rel='bookmark' title='Permanent Link: HTML 5 wins over XHTML 2.'>HTML 5 wins over XHTML 2.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/simple-link-styling-using-css' rel='bookmark' title='Permanent Link: Simple link styling using CSS.'>Simple link styling using CSS.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>This post might be a sequel to my previous post on <a href="http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking">speeding up a page&#8217;s loading time to get better rankings in Google&#8217;s search engine results pages</a> (SERPs). It is however not the case here. Most of us write our code, at least our code&#8217;s structure, in one go. This is done preferably after having identified all the building blocks of a page or template. But let&#8217;s be honest, even if we optimise our code, our CSS and all the scripting that accompany our everyday job it is not easy to dive back into the code and go for seconds in terms of cleaning up.</p>
<p><a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/04/bad-code-sample.jpg"><img src="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/04/bad-code-sample.jpg" alt="" title="bad-code-sample" width="540" height="280" class="alignright size-full wp-image-1624" /></a></p>
<h2>The good choice.</h2>
<p>I admit it. I have not done it all the time, cleaning the code more than necessary. Like everybody who has made mistakes I could easily come up with a thousand reasons for not having done so. The first would be: &#8220;It takes too much time on the schedule allotted to such or such project. As I matured I understood the necessity of doing second passes in code cleaning.</p>
<ul>
<li>It helps you check any error that could have been left.</li>
<li>It might be a good occasion to compress some elements to speed up the page.</li>
<li>It is a good chance to <strong>drop the unnecessary tags in your HTML code</strong>.</li>
</ul>
<p>Now you might be asking yourself what this &#8220;unnecessary tag in the HTML code&#8221; is. Simple. When doing second checks on my code I found out that I somehow found new and improved solutions to the code already written. The I would change these. Most of the time I found myself dropping some tags from my HTML code and exploit the inherited properties of other tags to achieve the same results. This would be <strong>beneficial for maintainance, improve page loading time and less code means more content for search engines</strong>.</p>
<h2>The basic code.</h2>
<p>Below is a basic example of code that we usually find in web design. There is nothing wrong with this code, it works perfectly well and is written to be nicely styled in CSS.</p>
<pre class="brush: html">
&lt;div id=&quot;navigation&quot;&gt;
    &lt;ul&gt;
        &lt;li&gt;&lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/about.html&quot;&gt;About us&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/services.html&quot;&gt;Our services&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/contact.html&quot;&gt;Contact us&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/register.html&quot;&gt;Register here&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>As you can see in this code, it is a navigation menu that is implemented into its own wrapping DIV tag which can itself be included in header or sidebar parts in a design. After analysing it and improving its CSS, we would estimate that the code is fine. But there&#8217;s one more step to push.</p>
<h2>Dropping the tag.</h2>
<p>In standard HTML, some tags have block displays and others have inline ones. Those missing any of these can get them through the declaration of these properties in the cascading style sheets.</p>
<pre class="brush: html">
    &lt;ul  id=&quot;navigation&quot;&gt;
        &lt;li&gt;&lt;a href=&quot;/&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/about.html&quot;&gt;About us&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/services.html&quot;&gt;Our services&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/contact.html&quot;&gt;Contact us&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&quot;/register.html&quot;&gt;Register here&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
</pre>
<p>With this in mind, we can bring some tags to become their own container instead of relying on an extra tag. This is the case with our basic code where we can directly make use of the containing UL tag to hold the rest of the elements, thus making the use of the holding DIV unnecessary. One tag won! This can be done on a lot of tags such as FORM or even SPAN (if there is a use to it&#8230;).</p>
<div class="discuss">
<h3>Let&#8217;s talk about this.</h3>
<p>To be honest, as time goes by, this solution becomes a habit and a second nature. I now do not necessarily have to go through my code and drop tags all the time. I usually write a piece of code and stop and ponder over it. If there is a change to be made it is done immediately but this is now rarely the case. So why not go through your code and drop some tags? Do you have similar approaches in your coding skills? Try this trick out and see how much you can take off your code.
</p></div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1610&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/strong-em-tags' rel='bookmark' title='Permanent Link: The secret of strong and em tags.'>The secret of strong and em tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/festive-hands-the-structure' rel='bookmark' title='Permanent Link: [Festive Hands] The structure.'>[Festive Hands] The structure.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/html-5-wins-over-xhtml-2' rel='bookmark' title='Permanent Link: HTML 5 wins over XHTML 2.'>HTML 5 wins over XHTML 2.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/simple-link-styling-using-css' rel='bookmark' title='Permanent Link: Simple link styling using CSS.'>Simple link styling using CSS.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You should be (over-) using the H (heading) tags.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags#comments</comments>
		<pubDate>Thu, 15 Apr 2010 11:00:12 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[h1 tag]]></category>
		<category><![CDATA[headings]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[importance of headings]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1595</guid>
		<description><![CDATA[Headings are regularly overlooked by web designers although they are really useful elements in web design in terms of standards, seo and usability. The full cover of these is in this article.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/strong-em-tags' rel='bookmark' title='Permanent Link: The secret of strong and em tags.'>The secret of strong and em tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking' rel='bookmark' title='Permanent Link: Speeding your page load time will improve your Google ranking.'>Speeding your page load time will improve your Google ranking.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/web-standards-for-online-businesses-in-mauritius' rel='bookmark' title='Permanent Link: Web standards for online businesses in Mauritius.'>Web standards for online businesses in Mauritius.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/best-posts-april-2010' rel='bookmark' title='Permanent Link: Round up of the best posts of April 2010 on the Bureau.'>Round up of the best posts of April 2010 on the Bureau.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p><a href="http://www.w3.org/TR/html401/struct/global.html#edef-H1">Heading tags (h1, h2, h3, h4, h5, h6)</a> have always had a bad reputation in web designing. The main reason for this is the beastly appearance these tags when they have their default styling. Many a time web designers have thrown the H1 tag out for the use of a H4 one just because the latter has a smaller font size. The H tags are, however, core elements of page building and SHOULD be used and even overused. </p>
<p>The ugliness can be put aside as all this can be styled (as they have always been) with cascading style sheets (CSS).</p>
<h2>Semantic web and standards.</h2>
<p>With the advent of standards, web designers have understood that clean semantic code is what must be produced be it for maintainability, load time or cross browser compatiblity. Heading tags are part of this semantic code as they are here to structure a page. Their mark-up has been created to give the maximum structuring possibilities to pages. Some tips on their usage:</p>
<ul>
<li>The top level heading (bearing the title or theme of a page) should always be a H1.</li>
<li>There can be only one H1 in the entire page.</li>
<li>Use heading tags logically, there cannot be suh-headings (H2/H3/&#8230;) before a H1.</li>
</ul>
<h2>Search engine optimisation.</h2>
<p>In semantic web, headings bear the &#8220;titles&#8221; of pages and sections. These are therefore important information that a page is giving out to its visitors. Search engine robots have algorithms that take this into consideration. Heading tags are thus analysed by these robots and keywords included in titles are given more weight (this is not an incentive to go for keyword stuffing in headings). Using headings is therefore a good way of working on a page&#8217;s ranking.</p>
<p>Another interesting angle on headings and search engine optimisation is the fact that links are allowed in headings. Using headings and keywords along with links result in good optimised <a href="http://www.webdesign-bureau-of-mauritius.com/would-twitter-be-better-for-seo-without-url-shorteners">anchor text</a> for any page. This can be taken into consideration when working on onsite deeplinking and SEO strategies. The current trend is to put a site&#8217;s logo and link in the H1 tag. This does not bring much in terms of SEO as it would do by optimising a page on its own theme and content.</p>
<h2>Heading tags and usability.</h2>
<p>Nobody likes to read huge boring text blocks on screen. The boredom is usually accentuated by the monotonous looks of long texts. Adding headings reduces this in the first place. Second, headings will allow a visitor to quickly scan a page and the different themes or points the page holds on a particular subject. This comes as a usability tool in this case.</p>
<div class="discuss">
<h3>Let&#8217;s talks about this&#8230;</h3>
<p>Headings have a lot of advantages and are here to help web designers improve their code, its structure, usability as well as SEO. So why are they still not being used as such? Try some of the premium WordPress theme sites and check the code on some of their live demos, the designs are great but the code rarely makes good use of the headings.</p>
</div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1595&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/strong-em-tags' rel='bookmark' title='Permanent Link: The secret of strong and em tags.'>The secret of strong and em tags.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking' rel='bookmark' title='Permanent Link: Speeding your page load time will improve your Google ranking.'>Speeding your page load time will improve your Google ranking.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/web-standards-for-online-businesses-in-mauritius' rel='bookmark' title='Permanent Link: Web standards for online businesses in Mauritius.'>Web standards for online businesses in Mauritius.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/best-posts-april-2010' rel='bookmark' title='Permanent Link: Round up of the best posts of April 2010 on the Bureau.'>Round up of the best posts of April 2010 on the Bureau.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Speeding your page load time will improve your Google ranking.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking#comments</comments>
		<pubDate>Tue, 13 Apr 2010 12:00:55 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[behaviour]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[code optimisation]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1578</guid>
		<description><![CDATA[Google made it official, a page's load time affects its ranking in results pages. Learn how to speed up your pages through code optimisation.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/gmu-redux-testing-bandwidth-and-load-times' rel='bookmark' title='Permanent Link: [GMU Redux] Testing bandwidth and load times.'>[GMU Redux] Testing bandwidth and load times.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/what-will-change-in-2010-with-search-engines-ranking-google-speaking-only-not-sure-%e2%80%a6' rel='bookmark' title='Permanent Link: What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)'>What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/optimising-site-for-google-sitelinks' rel='bookmark' title='Permanent Link: Optimising your site to get Google sitelinks.'>Optimising your site to get Google sitelinks.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>It is now official. Speeding up a site&#8217;s page delivery will be beneficial for each page&#8217;s ranking in the the Search Engine Results Pages (SERPs). So speed is now a ranking factor at Google. This has been officially announced on the <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html">Official Google Webmaster Central Blog</a>.</p>
<blockquote><p>Speeding up websites is important — not just to site owners, but to all Internet users. Faster sites create happy users and we&#8217;ve seen in our internal studies that when a site responds slowly, visitors spend less time there. But faster sites don&#8217;t just improve user experience; recent data shows that improving site speed also reduces operating costs. Like us, our users place a lot of value in speed — that&#8217;s why we&#8217;ve decided to take site speed into account in our search rankings. We use a variety of sources to determine the speed of a site relative to other sites.</p></blockquote>
<h2>Satisfied users.</h2>
<p>If you still haven&#8217;t grasped the concept: Google has always emphasized that it liked pages made for users and not for search engines. A faster loading page means a satisfied user and as Google has all to win when it concerns satisfied users it is using what satisfies them, fast pages, as a ranking tool. Now, those having never seen the usefulness of Google Webmaster Tools can start running there to open their accounts. </p>
<p> <img src='http://www.webdesign-bureau-of-mauritius.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' /> </p>
<h2>How to?</h2>
<p>There are some simple ways of improving a site&#8217;s speed. First things first, use <a href="http://tools.pingdom.com/">pingdom tools to evaluate your page&#8217;s load time</a>. What I like with this new factor is that web designers will have to go back to the basics, re-use the core of web design coding, i.e. writing standards based code.</p>
<h2>Standards.</h2>
<p>Great day for standards. Using semantic and clean code will definitely help improve a page&#8217;s loading time. Using basic and clean tags will help your pages load in a whizz. Make sure you do not use deprecated tags and keep to your document definition (strict, transitional&#8230;etc.). Moreover, when using standards you get yourself a step ahead in optimising your code as the latter is easily maintained and you can just get any other coder to dive into your page to optimise it.</p>
<p>With the use of standards, you are bound to reduce the number of lines of code you would have originally used. Thus, pages are lighter and load time is decreased. All benefits!</p>
<h2>External CSS.</h2>
<p>Using standards implies the separation of presentation and content. This is done through the use of Cascading Style Sheets (CSS) and, more important, the use of <strong>external</strong> CSS. This also has an impact on your page load time. Why? Having all CSS in one external file means that the file will load only once (on the first page a site is visited) then, the same file is used by the browser to load all the other pages&#8217; presentation. This means that your site&#8217;s pages will load faster as the CSS will be read only once and you will not have duplicate code to maintain all the time in each page if your CSS is written in them.</p>
<p>To get the most out of your CSS in terms of load time you can also improve the CSS file itself. Check out a previous article on <a href="http://www.webdesign-bureau-of-mauritius.com/speed-up-your-web-pages-via-css-file">how you can make pages load faster by minimising the CSS file</a>.</p>
<h2>External behaviour.</h2>
<p>Should you be having behaviour on your pages (be they through Java or DOM scripting), the same advice as that for CSS goes. You need to externalise all the code to one external page to avoid constant recalls to all your functions each time a page is loaded. You can also think about progressive enhancement to improve the page loading when scripts are not activated or fail to load. All in all, keeping these simple and short will help improve your page loading capabilities. Other enhancements include the loading of all scripts after the content.</p>
<div class="discuss">
<h3>More&#8230;</h3>
<p>These here are some simple examples on how the code can help pages in improving in terms of load times. It is very important to take these into consideration at the beginning of a project to maximise its ROI. This is a great example on how <strong>code and coding strategies can improve SEO</strong>, and Google is now making use of it. </p>
<p>You can push further in the ways a page&#8217;s load time can be improved for example, the choice of your server or image optimisation strategies.
</p></div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1578&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/gmu-redux-testing-bandwidth-and-load-times' rel='bookmark' title='Permanent Link: [GMU Redux] Testing bandwidth and load times.'>[GMU Redux] Testing bandwidth and load times.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/what-will-change-in-2010-with-search-engines-ranking-google-speaking-only-not-sure-%e2%80%a6' rel='bookmark' title='Permanent Link: What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)'>What will change in 2010 with search engines ranking? (Google speaking only? Not sure …)</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/optimising-site-for-google-sitelinks' rel='bookmark' title='Permanent Link: Optimising your site to get Google sitelinks.'>Optimising your site to get Google sitelinks.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/dropping-unnecessary-tags-in-your-html-code' rel='bookmark' title='Permanent Link: Dropping unnecessary tags in your HTML code.'>Dropping unnecessary tags in your HTML code.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/you-should-be-over-using-the-h-heading-tags' rel='bookmark' title='Permanent Link: You should be (over-) using the H (heading) tags.'>You should be (over-) using the H (heading) tags.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Failure of the web design community in Mauritius?</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/failure-of-the-web-design-community-in-mauritius</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/failure-of-the-web-design-community-in-mauritius#comments</comments>
		<pubDate>Wed, 07 Apr 2010 10:19:34 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[mauritius]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[web company in mauritius]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web design community]]></category>
		<category><![CDATA[web designer in mauritius]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1570</guid>
		<description><![CDATA[It is a sad thought, there is no real Mauritian web design community. There are web designers, there are companies but none are actually working for the creation of an active community. Most are taken is showing that they are better than the others, necessary for business, true but what about the community?


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/community-managers-the-new-kids-on-the-block' rel='bookmark' title='Permanent Link: Community managers: the new kids on the block.'>Community managers: the new kids on the block.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/untamed-businesses-in-mauritius' rel='bookmark' title='Permanent Link: Untamed businesses in Mauritius.'>Untamed businesses in Mauritius.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/web-designer-web-consumer' rel='bookmark' title='Permanent Link: Web designer = Web consumer.'>Web designer = Web consumer.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/are-mauritians-that-bad-at-design' rel='bookmark' title='Permanent Link: Are Mauritians that bad at design?'>Are Mauritians that bad at design?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/mbcs-new-website-a-corporate-failure' rel='bookmark' title='Permanent Link: MBC&#8217;s new website: a corporate failure?'>MBC&#8217;s new website: a corporate failure?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>Understanding and mis-understanding form part of our daily life. Mauritians have a particularity though. The &#8220;outside&#8221; view is really important in our society. Showing-off. Along with that we hold on to concepts that everybody rejects publicly but doing all the time. I would put it as it is sometimes the case of &#8220;doing better than the Joneses&#8221;. How many tuned cars do you find in Mauritius? How many &#8220;competition lacaze&#8221; have you seen? All in all, in our society it is a &#8220;I&#8217;m [better/smarter/richer/...insert adjective here] than you&#8221; race.</p>
<p>Coming to this, I thought that by launching the Web Design Bureau of Mauritius, I would be able to join a real community of Mauritian web designers. I was dreaming of networking and exchanging passionate findings with other web designers from Mauritius. I was longing to help them in understanding SEO and web design to its core with an objective of bettering the whole system. I hoped for a strong social media driven network where all Mauritian web designers would be exchanging and showing with pride what we could accomplish from our small island. How wrong was I in believing this! There is no community in Mauritius and will not be for a long time.</p>
<p><a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/04/community.gif"><img src="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/04/community.gif" alt="Web design community in Mauritius" title="Web design community in Mauritius" width="540" height="263" class="aligncenter size-full wp-image-1571" /></a></p>
<p>There&#8217;s no &#8220;I&#8217;m better than you&#8221; in my endeavour but a real want for networking and sharing. The problem is that the Mauritian ego is what pervades and that ends up in people not accepting positive criticism. For them only the word &#8220;criticism&#8221; comes out and they forget the &#8220;positive&#8221;. Everybody in Mauritius is best at what it does (irony!). Others are even declaring themselves guard dogs of the Internet in Mauritius. You can&#8217;t be all. Either you&#8217;re a web designer and can at least discourse on Zeldman&#8217;s &#8220;Web Designing with Web Standards&#8221; or you&#8217;re a jack of all trades and master of none. </p>
<p>Working in a specific field means that you have to know what is going on in the office next to you where UI designers or web marketeers are working. You have to listen and learn from them all while explaining your job to them.  You have to know what is the use of community management as well as that of server redirects through a .htaccess file. You have to see what are the advantages of deploying a website through a CMS than building from scratch. You have to understand why such type of code is incompatible with SEO&#8230; Where the magic happens is when new techniques are uncovered, great ROI is achieved or just simple genius is created from the mixed research of all these teams.</p>
<p>Networking seems to work right with all people in other fields gravitating around web designing: SEO, expert web management, content building, copywriting or programming but never with web designers. Problem: ego again. You can have a point of view and stand behind it but you also have to accept that others&#8217; ideas can be different. You can discuss about the pros and cons without adding a &#8220;g*g*t&#8221; or a &#8220;f*l**r m*m*&#8221;. Sadly though, I&#8217;ve seen too many of these around. Few web designers are in for community building and sharing. Many treasure their misconceptions as gold because in the world of the blinds the one-eyed are kings. This goes for companies too.</p>
<p>The web is not mature enough in Mauritius and the cultural tissue very strong. The Internet is an online society that recreates part of our common culture. This is what is happening, the Mauritian culture is seeping through on the online community and recreating what they usually do in everyday life. This is where the Mauritian web design community is failing!</p>
<div class="discuss">
<h3>Let&#8217;s talk about this.</h3>
<p>All this might look like I&#8217;m trying to do &#8220;better than the Joneses&#8221; but it is not the case. It is a real plea to have a strong network in Mauritius.</p>
<p> <strong>Now, let&#8217;s see what&#8217;s really happening:</strong> most of the companies and web designers would say that others will steal their work and clients if they enter a community. None actually thinks the other way round. Imagine the impact on a client when you say that you are active in the Mauritian web design community, that you are working hand in hand with others to give better results for that client, to make the web a better place. This would imply that you are not only after your client&#8217;s money, this would also imply that state of the art techniques will be used for that client&#8217;s site thus reassuring it, this would imply that all the buzz around web communities would also shine on your own business!</p>
<p>Do you think that the industry would get better if a real web design community is built? Do you think that Mauritian web design companies could be real engines of such communities? Would Mauritian web designers gain from having an online community? Does this really imply a change in the way of thinking (I might be getting it all wrong)?
</p>
</div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1570&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/community-managers-the-new-kids-on-the-block' rel='bookmark' title='Permanent Link: Community managers: the new kids on the block.'>Community managers: the new kids on the block.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/untamed-businesses-in-mauritius' rel='bookmark' title='Permanent Link: Untamed businesses in Mauritius.'>Untamed businesses in Mauritius.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/web-designer-web-consumer' rel='bookmark' title='Permanent Link: Web designer = Web consumer.'>Web designer = Web consumer.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/are-mauritians-that-bad-at-design' rel='bookmark' title='Permanent Link: Are Mauritians that bad at design?'>Are Mauritians that bad at design?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/mbcs-new-website-a-corporate-failure' rel='bookmark' title='Permanent Link: MBC&#8217;s new website: a corporate failure?'>MBC&#8217;s new website: a corporate failure?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/failure-of-the-web-design-community-in-mauritius/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Nobody needs web designers.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/nobody-needs-web-designers</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/nobody-needs-web-designers#comments</comments>
		<pubDate>Sun, 28 Mar 2010 16:28:51 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[mauritius web design]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web designer]]></category>
		<category><![CDATA[web designer bureau]]></category>
		<category><![CDATA[why you don't need web designers]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1559</guid>
		<description><![CDATA[You don't need to hire a web designer nor do you need expert consultants in "web" fields. Not to speak of SEO and project management. All this is so easy and resources are so readily available that it is a real waste of time and money.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/failure-of-the-web-design-community-in-mauritius' rel='bookmark' title='Permanent Link: Failure of the web design community in Mauritius?'>Failure of the web design community in Mauritius?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/what-will-the-future-of-websites-be' rel='bookmark' title='Permanent Link: What will the future of websites be?'>What will the future of websites be?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/the-aliasing-issue' rel='bookmark' title='Permanent Link: The aliasing issue.'>The aliasing issue.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/mbcs-new-website-a-corporate-failure' rel='bookmark' title='Permanent Link: MBC&#8217;s new website: a corporate failure?'>MBC&#8217;s new website: a corporate failure?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/web-designer-web-consumer' rel='bookmark' title='Permanent Link: Web designer = Web consumer.'>Web designer = Web consumer.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>What have we done? What has &#8220;web 2.0&#8243; brought upon us? The web is maturing and democratisation is on its way. This is why non-techs are making heaps of money over the web with blogs while having 0 knowledge of the way it all works. Mind you this is great as the web is now open to everybody and people are using it as easily as possible but some things are really hard on us web designers and web project managers.</p>
<h2>We are family!</h2>
<p>Buy computer, get broadband ADSL, surf! This will turn you into a web expert. It is true story that a lot of web designers face the problem of having people who use their own experience and have the &#8220;my kid made his own website&#8221; syndrome when faced to web professionals. Below are some of the glorious things I personally heard.</p>
<p>&#8220;My boyfriend spends hours surfing the web and is a huge Internet consumer, and he says that this website is crap&#8221;. This is what I once heard from one of our SAAS managers in a company where I used to work. She was good at selling the web service but when it came to criticising any web designer&#8217;s work it was the boyfriend that got into the picture just because he spent hours over the net.</p>
<p>&#8220;I have led the reflection over what my website should be doing. I only want people having the same level of approach to my business as I have to surf my site. Others can just sod off. I know it is easy to filter them. I am a pioneer and not a follower, so I will not accept SEO oriented text and I want my site to be WOW but not use the same codes as others. I am used to the web, I surf all night and I want to be on everything that a person types in terms of keywords on Google. Build a website that seduces me!&#8221; All this nonsense is what I have been hearing from&#8230; a private school director in need of a new website to bring in new recruits!</p>
<p>&#8220;We want a paper archive (800 PDFs) on our website. I believe it is an easy add.&#8221; This one came from a director preparing a huge conference.</p>
<h2>The problem.</h2>
<p>The underlying problem in all this is not that these people will end up having websites that will not work or will be the opposite of all the objectives they should be aiming for along with the loss off money, it is that web designers have made things too easy. Actually, they have not made things too easy but they have made things look easy from the outside.</p>
<p>This is the core of our work, building tools that accomplish goals but in a specific way: being user centred. The sole fact that the tool is user centred means that the use of the website must be thought out beforehand and that the user navigates easily and has a great experience and accomplishes the goals without feeling the technology lying behind. We all did a great job and succeeded in this endeavour but the problem is that a majority now thinks that if the front-end is easy to use, the back-end&#8217;s implementation must be as easy.</p>
<p>This also runs for web project management where, for some clients it all boils down to choosing the titles of each navigation tab or SEO experts where clients just end up saying &#8220;stuff the damn thing with keywords as well as our competitor&#8217;s name and we&#8217;ll get the first place on Google&#8221;. All seems too easy now.</p>
<h2>No way out.</h2>
<p>I won&#8217;t be getting into the details here but apart from the horrors I hear in my day job, the Web Design Bureau of Mauritius does get its share of eccentric demands everyday. However, a great resource to see what type of incongruous thoughts clients have is <a href="http://clientsfromhell.tumblr.com/">Clients From Hell</a>. So what happens now? How do web designers and all work with such type of people? </p>
<p>Well, major web design blogs have lists of personae of the type of client you should avoid. For others, it is experience that makes it all. You see the client, you judge him/her at the first contact and you run off if necessary. Just don&#8217;t waste your time. It is sad to say so but if one has to spend precious work hours trying to educate a client, that person should leave the business. This said, it can be done is you work as an in-house web designer.</p>
<div class="discuss">
<h3>Let&#8217;s talk about this.</h3>
<p>Do you think we made a mistake in making things look so easy? Is there a way of changing client mentality (which I think will never change)? How do you/would you react in such situations? What is YOUR view of the Internet, do you think that things look too &#8220;easy&#8221; now?</p>
</div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1559&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/failure-of-the-web-design-community-in-mauritius' rel='bookmark' title='Permanent Link: Failure of the web design community in Mauritius?'>Failure of the web design community in Mauritius?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/what-will-the-future-of-websites-be' rel='bookmark' title='Permanent Link: What will the future of websites be?'>What will the future of websites be?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/the-aliasing-issue' rel='bookmark' title='Permanent Link: The aliasing issue.'>The aliasing issue.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/mbcs-new-website-a-corporate-failure' rel='bookmark' title='Permanent Link: MBC&#8217;s new website: a corporate failure?'>MBC&#8217;s new website: a corporate failure?</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/web-designer-web-consumer' rel='bookmark' title='Permanent Link: Web designer = Web consumer.'>Web designer = Web consumer.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/nobody-needs-web-designers/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Optimising your site to get Google sitelinks.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/optimising-site-for-google-sitelinks</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/optimising-site-for-google-sitelinks#comments</comments>
		<pubDate>Mon, 22 Mar 2010 14:36:24 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Resource Depot]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google seo card]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sitelinks]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1534</guid>
		<description><![CDATA[Find out how to optimise your website to get Google sitelinks. An internal report published by Google gives different optimisation information on which there are guidelines on how to get sitelinks.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking' rel='bookmark' title='Permanent Link: Speeding your page load time will improve your Google ranking.'>Speeding your page load time will improve your Google ranking.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/google-advanced-suggest-tool' rel='bookmark' title='Permanent Link: Google&#8217;s advanced suggest tool and SEO.'>Google&#8217;s advanced suggest tool and SEO.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/search-engine-optimisation-seo-for-coming-soon-pages' rel='bookmark' title='Permanent Link: Search Engine Optimisation (SEO) for &#8220;coming soon&#8221; pages.'>Search Engine Optimisation (SEO) for &#8220;coming soon&#8221; pages.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/when-social-media-killed-google' rel='bookmark' title='Permanent Link: When social media killed Google.'>When social media killed Google.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/would-twitter-be-better-for-seo-without-url-shorteners' rel='bookmark' title='Permanent Link: Would Twitter be better for SEO without URL shorteners?'>Would Twitter be better for SEO without URL shorteners?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>Google has unveiled a lot on the way its algorithm works and on how the company actually works to promote its own products on the engine. <a href="http://googlewebmastercentral.blogspot.com/2010/03/googles-seo-report-card.html">Google Webmaster Central has published an article on the SEO report cards that Google uses to maximize its products&#8217; visibility on its own search engine</a>. There is a lot of things present in there and it all gravitates around tuning up one&#8217;s pages for better ranking and increased user interest. One part on which I really perused is the building up of sitelinks.</p>
<h2>Sitelinks for the dumb.</h2>
<p>Google sitelinks are very easy to spot. They are direct inputs to a site&#8217;s inner links, categories, themes&#8230; The advantage of such an option is that it allows the user to go directly to some specific part of a site, thus maximising conversion by, for example, removing any redundant step like going through the main page. Sitelinks look like this:</p>
<p><a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/03/sitelinks.gif"><img src="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/03/sitelinks.gif" alt="Google sitelinks example" title="Google sitelinks example" width="540" height="150" class="aligncenter size-full wp-image-1535" /></a></p>
<p>The Google SEO report card defines it as such:</p>
<blockquote><p>Sitelinks are often a signal to users that they&#8217;ve found the result they&#8217;re looking for and can help in finding information faster.</p></blockquote>
<h2>How to get sitelinks?</h2>
<p>This is the trick question in the whole system. Webmasters can&#8217;t choose <strong>when sitelinks are shown</strong>. Up to now, nobody knows when, how and who triggers the sitelinks. There are different assumptions on the subject but no one really knows if it is human powered or not. However, the report card shows that there is a 56% of changes to have an incoming click through sitelinks on a search engine results page. So what can you do to get sitelinks then?</p>
<p>The SEO report card states that an improved site organisation and good internal linking strategies can improve the chances of getting them. Here are the instructions:</p>
<ul>
<li>use a hierarchical site structure</li>
<li>use descriptive anchor text and links pointing to internal pages</li>
<li>avoid deep nesting of content behind many subdirectories</li>
</ul>
<h2>Bonus feature.</h2>
<p>The bonus given by Google concerning the sitelinks is that they can be optimised for providing relevant information, helping the users find the content they want faster and, a really nice way of putting things, taking up more real estate on the search results page (the result taking more space on the page). </p>
<p>The card coins good sitelinks as &#8220;Appealing Google Sitelinks&#8221;. These sitelinks are those that really do the job, those that give the relevant information or provide the user with the best options. For those oblivious of the use of Google Webmaster tools, there is an option in it that allows the webmasters to block unappealing sitelinks.</p>
<div class="discuss">
<h3>Let&#8217;s talk about this&#8230;</h3>
<p>There you go then. Have your say on sitelinks. I think that some of the information must not be taken as rules of law but believe that they are nice starting points for such optimisations.</p>
<p>Have you been trying to get them for specific sites? Have you been working on them and have you had positive results? Will you be using the Google Webmaster Tools to get those links?</p>
</div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1534&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/speeding-your-page-load-time-will-improve-your-google-ranking' rel='bookmark' title='Permanent Link: Speeding your page load time will improve your Google ranking.'>Speeding your page load time will improve your Google ranking.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/google-advanced-suggest-tool' rel='bookmark' title='Permanent Link: Google&#8217;s advanced suggest tool and SEO.'>Google&#8217;s advanced suggest tool and SEO.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/search-engine-optimisation-seo-for-coming-soon-pages' rel='bookmark' title='Permanent Link: Search Engine Optimisation (SEO) for &#8220;coming soon&#8221; pages.'>Search Engine Optimisation (SEO) for &#8220;coming soon&#8221; pages.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/when-social-media-killed-google' rel='bookmark' title='Permanent Link: When social media killed Google.'>When social media killed Google.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/would-twitter-be-better-for-seo-without-url-shorteners' rel='bookmark' title='Permanent Link: Would Twitter be better for SEO without URL shorteners?'>Would Twitter be better for SEO without URL shorteners?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/optimising-site-for-google-sitelinks/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Facebook login issue: how Facebook shows that the web will never be conquered.</title>
		<link>http://www.webdesign-bureau-of-mauritius.com/facebook-login-issue-how-facebook-shows-that-the-web-will-never-be-conquered</link>
		<comments>http://www.webdesign-bureau-of-mauritius.com/facebook-login-issue-how-facebook-shows-that-the-web-will-never-be-conquered#comments</comments>
		<pubDate>Tue, 09 Mar 2010 12:30:20 +0000</pubDate>
		<dc:creator>Web Design Mauritius</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.webdesign-bureau-of-mauritius.com/?p=1482</guid>
		<description><![CDATA[An article on Read Write Web concerning FaceBook ended in an involuntary anthropological study of human-Internet interaction on mass used web applications. Find the whole story out and what we can conclude on the way the web is designed and used.


Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/facebook-in-googles-index' rel='bookmark' title='Permanent Link: Facebook in Google&#8217;s index.'>Facebook in Google&#8217;s index.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/when-social-media-killed-google' rel='bookmark' title='Permanent Link: When social media killed Google.'>When social media killed Google.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/best-posts-april-2010' rel='bookmark' title='Permanent Link: Round up of the best posts of April 2010 on the Bureau.'>Round up of the best posts of April 2010 on the Bureau.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/optimising-site-for-google-sitelinks' rel='bookmark' title='Permanent Link: Optimising your site to get Google sitelinks.'>Optimising your site to get Google sitelinks.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/would-twitter-be-better-for-seo-without-url-shorteners' rel='bookmark' title='Permanent Link: Would Twitter be better for SEO without URL shorteners?'>Would Twitter be better for SEO without URL shorteners?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="pub"><script type="text/javascript"><!--
                    google_ad_client = "pub-7734054350163682";
                    google_ad_slot = "3591776644";
                    google_ad_width = 336;
                    google_ad_height = 280;
                    //-->
                    </script>
                    <script type="text/javascript"  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
        </script>
                    </div><!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>Some weeks back, <a href="http://www.readwriteweb.com">Read Write Web</a> published an article on how <a href="http://www.readwriteweb.com/archives/facebook_wants_to_be_your_one_true_loginpage10.php">Facebook Wants to Be Your One True Login</a>. So far, no problem. The author, Mike Melanson, did not however cater for the possibility of indexation of the post on Google based on the &#8220;<strong>Facebook Login</strong>&#8221; keyword. </p>
<h2 style="clear: both">The Google trap.</h2>
<p>What happened is that the post made it to the top of the search engine&#8217;s results page on the &#8220;<strong>Facebook Login</strong>&#8221; search. Next thing was hundreds of <strong>Facebook</strong> users flooding on the post and trying to connect to <strong>Facebook</strong> via the &#8220;<strong>Facebook connect</strong>&#8221; plugin in the sidebar. This ended with a hilarious (from a web project manager&#8217;s point of view) thread of angry/confused/insulting/[add adjective here] comments from lost users, many complaining about the forthcoming death of their cows on Farmville.</p>
<p>Here&#8217;s an excerpt of the comments found over there.<br />
<a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/03/rww-comments.gif"><img src="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/03/rww-comments.gif" alt="Comments on the Read Write Web&#039;s article on the Facebook Login" title="Comments on the Read Write Web&#039;s article on the Facebook Login" width="540" height="651" class="aligncenter size-full wp-image-1483" /></a></p>
<h2>User interaction with search results.</h2>
<p>This sheds some light on how the average Internet user deals with websites. Let&#8217;s get back to how these users got to the Read Write Web website: most of them typed &#8220;<strong>Facebook login</strong>&#8221; in Google and clicked on the first result. This means that the use of Google as navigation tool is now one of the trendy uses of the search engine and that people click with confidence on the first result even without reading the result! Blind usage, that would be it. This also stresses on the importance of being in the first, if not being the first, on a given keyword.</p>
<h2>User interaction with a website.</h2>
<p>Now things become serious. The Read Write Web interface is red and white and has nothing at all in common with the <strong>Facebook login page</strong>. Nothing here reminds of <strong>Facebook</strong> except for the article title and the logo copied off <strong>Facebook</strong>. </p>
<p><a href="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/03/rww-article.gif"><img src="http://www.webdesign-bureau-of-mauritius.com/wp-content/uploads/2010/03/rww-article.gif" alt="Article on Facebook on Read Write Web" title="Article on Facebook on Read Write Web" width="540" height="207" class="aligncenter size-full wp-image-1484" /></a></p>
<p>This however did not give the information to the people getting on the website that this was not <strong>Facebook</strong> or <strong>Facebook&#8217;s login page</strong>. Does this mean that colour branding fails? Does this mean that people not only DO NOT READ urls nor TITLES or other elements NEITHER? Does this mean that if you deliver a specific content to people when they are here to do just one specific thing, they will not read the content. So, if <strong>Facebook</strong> sets up an info saying that all accounts will be linked to the users&#8217; bank accounts on the <strong>Facebook Login page</strong>, all these persons will automatically click &#8220;OK&#8221; and get in?</p>
<h2>Pushing the observation further.</h2>
<p>After a whole lot of thinking and working in the web design field, this <strong>Facebook Login issue</strong> shows that we will never really understand the web user. The latter is an entity whose usage of our tools will never really succeed in giving out the best service to all users because they will always do what they want. Another thing is that the web user is emotional. It will be browsing the web with passion and just as something unexpected crops up, the mood takes over and confusion leads to anger.</p>
<div class="discuss">
<h3>Let&#8217;s talk about this&#8230;</h3>
<p>If you are not a web professional, do you browse websites in the way the people on Read Write Web did? Do you think that web users are credule and their frame of mind will never be understood? Do you think that enhanced usability and site building can help in such situations? Do you agree with the statement that this shows that a user comes to a website for one thing and can only be satisfied by getting that thing?
</p></div>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end --><img src="http://www.webdesign-bureau-of-mauritius.com/?ak_action=api_record_view&id=1482&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.webdesign-bureau-of-mauritius.com/facebook-in-googles-index' rel='bookmark' title='Permanent Link: Facebook in Google&#8217;s index.'>Facebook in Google&#8217;s index.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/when-social-media-killed-google' rel='bookmark' title='Permanent Link: When social media killed Google.'>When social media killed Google.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/best-posts-april-2010' rel='bookmark' title='Permanent Link: Round up of the best posts of April 2010 on the Bureau.'>Round up of the best posts of April 2010 on the Bureau.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/optimising-site-for-google-sitelinks' rel='bookmark' title='Permanent Link: Optimising your site to get Google sitelinks.'>Optimising your site to get Google sitelinks.</a></li>
<li><a href='http://www.webdesign-bureau-of-mauritius.com/would-twitter-be-better-for-seo-without-url-shorteners' rel='bookmark' title='Permanent Link: Would Twitter be better for SEO without URL shorteners?'>Would Twitter be better for SEO without URL shorteners?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webdesign-bureau-of-mauritius.com/facebook-login-issue-how-facebook-shows-that-the-web-will-never-be-conquered/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>