<?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>KillFive.com &#187; page loading times</title>
	<atom:link href="http://www.killfive.com/tag/page-loading-times/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.killfive.com</link>
	<description>Five Things Every Internet Writer Should Know</description>
	<lastBuildDate>Mon, 30 Aug 2010 14:43:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Four Ways to Reduce Bounce Rates</title>
		<link>http://www.killfive.com/ways-reduce-bounce-rates/</link>
		<comments>http://www.killfive.com/ways-reduce-bounce-rates/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 15:26:09 +0000</pubDate>
		<dc:creator>Killer</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Code for Writers]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[attract and keep visitors]]></category>
		<category><![CDATA[better bounce rates]]></category>
		<category><![CDATA[faster page loads]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[page loading times]]></category>
		<category><![CDATA[reduce bounce rates]]></category>

		<guid isPermaLink="false">http://www.killfive.com/?p=887</guid>
		<description><![CDATA[  It seems logical that a low bounce rate will help spread the word about your site and that you are doing a good job with inbound marketing. If your bounce rate is over 60%, something is wrong with the way you are attracting visitors. ]]></description>
			<content:encoded><![CDATA[<div class='embaArticle' style='display:inline'><p><img alt="bounce rate" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/Bouncing_ball_strobe_edit.jpg/800px-Bouncing_ball_strobe_edit.jpg" title="bounce rates" class="alignnone" width="200" height="130" /></p>
<p>Analyzing website performance has a big learning curve. Most of us quickly grasp the importance of unique, frequently updated material, attractive headlines and interacting with users. One aspect of web performance that can be confusing is bounce rates. Let’s take a look at bounce rages and why they are important. </p>
<h2>What is a Bounce Rate?</h2>
<p>Any “rate” is by definition a percentage. &#8220;Bounce rate&#8221; represents the percentage of visitors who arrive at your landing page, then leave without interacting or clicking on another page within your site. You can find bounce rates through your analytics tool. Most web masters use Google Analytics for this.</p>
<p>The <a href="http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&#038;answer=60127" target="_blank">Google definition</a> of a bounce rate is “the percentage of single-page visits (i.e. visits in which the person left your site from the entrance page). Bounce rate is a measure of visit quality and a high bounce rate generally indicates that site entrance (landing) pages aren&#8217;t relevant to your visitors. You can minimize Bounce Rates by tailoring landing pages to each keyword and ad that you run. Landing pages should provide the information and services that were promised in the ad copy.”</p>
<h2>Why You Should Fix Bounce Rates</h2>
<p>So a low bounce rate means you are attracting visitors who are looking for what you have to offer. Put yourself in the place of a visitor who finds what they were looking for on the first try. How much more likely is that person to recommend your site to others?  It seems logical that a low bounce rate will help spread the word about your site and that you are doing a good job with inbound marketing. If your bounce rate is over 60%, something is wrong with the way you are attracting visitors. </p>
<h2>How to Reduce Bounce Rates</h2>
<p>The main aspects of your site that must be addressed to reduce bounce rates include page titles, engaging graphics, loading time and site navigation. In order to optimize these aspects you also need to understand testing.</p>
<h2>Page Titles</h2>
<p>The page title is the phrase shown in the tab of your browser when you visit a page. Because most of us are on WordPress, I&#8217;ll use this program as an example. Depending on the template you use, the page title may show the title of your blog and then list the name of the post, or it can list the post name first. You will want your carefully crafted post title to be used by the search engine, so edit your template to show the post title first. </p>
<h4 id="pre"></h4>
<p>To do this, you must edit the header.php file. For newbies, I recommend copying and pasting your header.php file to a text document before editing so you can always revert to the old file if you mess it up too badly. Here&#8217;s what it looks like: </p>
<pre><code>
&lt;title&gt;&lt;?php bloginfo('name'); ?&gt; &lt;?php if 	
( is_single() ) { ?&gt; » Blog Archive &lt;?php } ?&gt; 	
&lt;?php wp_title(); ?&gt;&lt;/title&gt;	

<strong>Just switch it around to look like this:</strong>

&lt;title&gt;&lt;?php wp_title(' '); ?&gt;&lt;?php if	
(wp_title(' ', false)) { echo '--'; } ?&gt;&lt;?	
php bloginfo('name'); ?&gt;&lt;/title&gt;
</code></pre>
<h2>Making Headlines</h2>
<p>There&#8217;s no point to editing your page title unless your headline makes visitors want to click on the title and then continue reading your post. Copyblogger does a better job of educating about headlines than I ever will, so I&#8217;ll just refer you to the following articles:</p>
<p><a href="http://www.copyblogger.com/magnetic-headlines/" target="_blank">How to Write Magnetic Headlines</a><br />
<a href="http://www.copyblogger.com/emotional-headlines/" target="_blank">13 Emotion-Based Headlines That Work</a><br />
<a href="http://www.copyblogger.com/writing-headlines-that-get-results/" >Writing Headlines That Get Results</a></p>
<h2>Catching Attention</h2>
<p>It may not seem obvious to you when you are browsing a website, but a good photo catches attention. Bounce rates drop significantly when photos, videos and screen shots are used. You can get images free at several sites. Read <a href="http://www.killfive.com/free-image/" target="_blank">this post</a> for more info. </p>
<h2>Reduce Loading Time</h2>
<p>If your page takes too long to load, few visitors will stick around to wait. You should also know that Google tests your page load time too when determining what to show in search results. If you are serious about your website, make sure you get a dedicated IP so that your page is not sharing resources with others, slowing it down. You should also examine the number of elements on the page that might be causing problems for you. </p>
<p><a href="http://www.websiteoptimization.com/services/analyze/" target="_blank">This site</a> will really open your eyes as to how the graphics, widgets and other page elements are slowing down load times! Don&#8217;t give too much attention to the times listed, since it talks about every single element loaded on the page. Most users can get to where they are going before the page is fully loaded. According to the report, by reducing page elements, I could increase my time by 9.6 seconds. I&#8217;ll be working on that later today!</p>
<h2>Improved Navigation</h2>
<p>It is important to take a step back from your site navigation and put yourself in the position of a new user. For instance, it seemed obvious to me that the “job hunting” link would lead to links for new telecommute writing job listings: not so much to other visitors. That is why I am adding a link in a prominent spot for those coming to find job postings, since that is my number one visitor attraction.</p>
<p>Once you begin tweaking your site for bounce rates, you&#8217;ll find more visitors come, stay and enjoy. This may mean a dramatic improvement in subscribers, advertising revenue and many other little ways you monetize your site. </p>
</div><script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_37940" title="Four Ways to Reduce Bounce Rates" url="http://www.killfive.com/ways-reduce-bounce-rates/"></script><div id="pfButton"><a href="http://www.killfive.com/ways-reduce-bounce-rates/?pfstyle=wp" title="Print an optimized version of this web page"><img id="printfriendly" style="border:none; padding:0;" src="http://cdn.printfriendly.com/pf-button.gif" alt="Print"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.killfive.com/ways-reduce-bounce-rates/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
