<?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"
	>

<channel>
	<title>Site Tips</title>
	<atom:link href="http://www.site-tips.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.site-tips.com</link>
	<description>Building Popular Websites</description>
	<pubDate>Fri, 18 Jul 2008 09:23:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>How to Create a Website</title>
		<link>http://www.site-tips.com/creation/how-to-create-a-website/</link>
		<comments>http://www.site-tips.com/creation/how-to-create-a-website/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 09:23:22 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Creation]]></category>

		<category><![CDATA[create website]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[tags]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/?p=17</guid>
		<description><![CDATA[OK, this is a very basic tutorial for those who have never created a website before. If you don&#8217;t know where to start your journey to making websites, I&#8217;ve got good news. It&#8217;s very easy to learn how to create a website! All you need is a computer and a text editor. In fact, you [...]]]></description>
			<content:encoded><![CDATA[<p>OK, this is a very basic tutorial for those who have never created a website before. If you don&#8217;t know where to start your journey to making websites, I&#8217;ve got good news. It&#8217;s very easy to learn how to create a website! All you need is a computer and a text editor. In fact, you don&#8217;t even need a computer. I&#8217;ve created simple websites on my mobile phone, though that&#8217;s not something I&#8217;d recommend you start with. <img src='http://www.site-tips.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m an advocate of learning by doing, so just open an editor (I like <a title="Notepad++" href="http://www.site-tips.com/creation/notepadd-the-free-editor/">notepad++</a> for quick editing) and type:</p>
<pre>Hello, this is my website!
E=mc^2</pre>
<p>Great! Now save the file as &#8216;index.html&#8217;. Next, in your file explorer, double click the file and behold! Your very first website!</p>
<p>All right, that may not have been as impressive as you wanted, but really, that&#8217;s basically it! You have a page that you can look at in your browser and it even has some useful information! (I bet you were wondering why I had you write E=mc^2, weren&#8217;t you?)</p>
<p>By now, of course, you want more. You probably wonder why all your text displays on the same line in your browser. A browser ignores white space in html files. It uses special code in websites to handle content differently. To see an example, right click on this website and choose &#8216;View page source&#8217; or something similar, depending on what browser you have. You&#8217;ll see a lot of code that has angled brackets which is <em>HTML</em>. Don&#8217;t panic, you&#8217;ll learn many of them, but even if you don&#8217;t want to: you don&#8217;t have to. Remember, you&#8217;ve already created your first website without them.</p>
<p>The bracketed words are called <em>tags</em> and they come in pairs. They are used to describe the content that&#8217;s between those tags. For example, somewhere on the top of the page source you&#8217;ll see &lt;title&gt;some title&lt;/title&gt;. This describes the t&#8230; well&#8230; you figure out what it describes. To get back to our example, you can use the tag &lt;br /&gt; to put an enter after your first line. Tags that have no closing tag, are closed with a /, so you don&#8217;t have to type &lt;br&gt;&lt;/br&gt;. Your code becomes:</p>
<pre>Hello, this is my website!&lt;br /&gt;
E=mc^2</pre>
<p>Save it again and open it in your browser. You&#8217;ll see the E=mc^2 on the next line now. Pretty cool, huh?</p>
<p>There are a great many tags you can learn, but frankly, you can make perfect websites without them. You don&#8217;t type these silly things when you&#8217;re writing a Word document, do you? This is because Word does this behind the scenes for you. (Word doesn&#8217;t use tags, but some other markup language.) So what you need is a different editor that lets you create a website using a dedicated editor, like you use Word write documents. I don&#8217;t use editors for my websites anymore, since I write most code by hand, but apparently a very good free HTML editor is <a href="http://www.chami.com/html-kit/">HTML-Kit</a>.</p>
<p>So now you know how webpages are created, you can create a web<em>site</em>. You can user hyperlinks to link your pages together. Create another file in your editor with the following code in it:</p>
<pre>E = energy,&lt;br /&gt;
m = mass,&lt;br /&gt;
c = the speed of light in a vacuum,&lt;br /&gt;
The 2 indicates the squaring of the c.</pre>
<p>Save this file as explanation.html. Open your index.html again and change it to:</p>
<pre>Hello, this is my website!&lt;br /&gt;
E=mc^2 (&lt;a href="explanation.html"&gt;explanation&lt;/a&gt;)</pre>
<p>Open the index.html in your browser, and you&#8217;ll see a link that you can click on, after which you&#8217;re taken to your wonderful explanation page. Now you can make your website as big as you want.</p>
<p>After this, it&#8217;s just looking at other pages and find what else you can do with HTML and other languages used to describe and manipulate web content. Examples are javascript (used often for dynamic interaction with the user) and PHP (used for handling information on your page before you get to see it in your browser). If you&#8217;re of the level of this tutorial, I wouldn&#8217;t go into it just yet, but it might be useful to know that there&#8217;s so much more possible than what you&#8217;ve just seen.</p>
<p>So, this concludes my basic &#8216;<em>how to create a website</em>&#8216; tutorial. You have learned the basics of creating websites, some HTML and you&#8217;ve seen that you can learn a lot more by viewing the page source of any website you encounter. Remember that you can make it as difficult as you want, with tags, and images, and movies, etc. But in the end, people visit your site because of your content. If they don&#8217;t like your content, it doesn&#8217;t matter how good your HTML knowledge is, they will go away faster than you can say &#8216;hyperlink&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/creation/how-to-create-a-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Notepad++: The Free Editor</title>
		<link>http://www.site-tips.com/creation/notepadd-the-free-editor/</link>
		<comments>http://www.site-tips.com/creation/notepadd-the-free-editor/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 09:33:38 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Creation]]></category>

		<category><![CDATA[free editor]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[notepad++]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/software/notepadd-the-free-editor/</guid>
		<description><![CDATA[It may surprise you to hear that many seasoned web developers don&#8217;t use full blown programs such as Dreamweaver. Not that these applications are bad, but they are, well, big. In the end we just wish to create our HTML, our PHP code, our Javascript code and, since we are experienced developers, we know how [...]]]></description>
			<content:encoded><![CDATA[<p>It may surprise you to hear that many seasoned web developers don&#8217;t use full blown programs such as Dreamweaver. Not that these applications are bad, but they are, well, big. In the end we just wish to create our HTML, our PHP code, our Javascript code and, since we are experienced developers, we know how to write code. What we want is a light weight development tool that doesn&#8217;t tell us what to do. We want to edit our code quickly and easily.<img src="http://www.site-tips.com/wp-content/uploads/notepadpp.gif" alt="Notepad++" /></p>
<p>I&#8217;m especially fond of <a href="http://sourceforge.net/projects/notepad-plus/" title="Notepad++ on SourceForge.net">Notepadd++</a>. There are so many reasons, but I&#8217;ll bore you with just a few of them:</p>
<ul>
<li>It starts up in no-time, even if you have an older computer,</li>
<li>A simple interface, which you can add and remove components from as needed,</li>
<li>Syntax highlighting for more programming languages than you can program in, including: HTML, Javascript, CSS, Java, PHP, ASP, C#, Actionscript and many, many more,</li>
<li>Code completion,</li>
<li>It&#8217;s completely free!</li>
</ul>
<p>While you can&#8217;t beat programs like Eclipse for large projects in Java or PHP for object oriented programming, there&#8217;s nothing like Notepad++ for quickly editing your files. It&#8217;s definitely my editor of choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/creation/notepadd-the-free-editor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Build a Popular Website According to Google</title>
		<link>http://www.site-tips.com/creation/how-to-build-a-popular-website-according-to-google/</link>
		<comments>http://www.site-tips.com/creation/how-to-build-a-popular-website-according-to-google/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 17:32:23 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Creation]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[seo]]></category>

		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/traffic/how-to-build-a-popular-website-according-to-google/</guid>
		<description><![CDATA[If you want to build a popular website, you&#8217;ll have to do the these things. According to an ex-employee of Google, this will work good. Always! And honestly, most of these things seem like common sense.
 1. Add content
Add content, add content, add content. Before you even register your domain, you should have enough ideas [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to build a popular website, you&#8217;ll have to do the these things. According to an ex-employee of Google, this will work good. Always! And honestly, most of these things seem like common sense.</p>
<p><strong> 1. Add content</strong><br />
Add content, add content, add content. Before you even register your domain, you should have enough ideas to build 100 pages on your site. Start brainstorming and see what you can come up with in 10 minutes. If that&#8217;s not enough to fill 50 pages, consider not building the site at all. Having lots of content is important.</p>
<p><strong> 2. Simple designs are better</strong><br />
The text content should outweigh the html content. Do not make heavy use of flash, java, javascript, etc. Don&#8217;t add text like &#8216;best viewed with&#8217;&#8230; Your website should be viewable with any browser. Keep it clean and professional.</p>
<p><strong> 3. Keep the pages small</strong><br />
Smaller is better. Keep it under 15k if you can. Your site should be fast loading, or people will leave. Speed is everything. Next to content, that is. Keeping it under 10k or 5k if you can. Difficult, but people love fast sites. Throw away all the trash on your pages.</p>
<p><strong> 4. Content length</strong><br />
Put a new page online every day of about 200 to 500 words. Go to the overture keyword suggester to find ideas of what to write about. Spell check your content. Search engines can do it, and so should you. If you have a blog, go for article-like posts as opposed to the personal diary kinds of posts.</p>
<p><strong> 5. Use keywords</strong><br />
Use your keywords in the following places: title, description tag, heading, url, once bold, once italic and once high on the page.<br />
<strong><br />
6. Link to other sites</strong><br />
Put 2 links to other, high ranking pages on your site. They should be relevant to the content of that page and use keywords as your link. Don&#8217;t add every link that people request from you. Check their relevance first.</p>
<p><strong> 7. Link to your own site</strong><br />
Put links from one page to other relevant pages on  your own site. Again: use keywords as your link.</p>
<p><strong> 8. Submit your site</strong><br />
Submit your site to Google, AltaVista, Yahoo, Msn, Hotbot, etc. Then forget about that for 6 months. Also submit it to every single directory you can find. Do a check after 6 months and resubmit if you&#8217;re not listed.</p>
<p><strong> 9. Log and track</strong><br />
Most hosts provide these. Don&#8217;t use a lame graphic counter. Check where your visitors are coming from to find out what traffic methods work best for your site.</p>
<p><strong> 10. Write for people</strong><br />
People are not coming to your site for your content. They are coming for <em>their </em>content. Try to write as if you are writing to one specific person, such as a friend of yours who&#8217;s interested in the same topic. Don&#8217;t try to write for &#8216;all of your visitors&#8217;.</p>
<p><strong> 11. Stay ahead</strong><br />
If you know that something big will come out in a few months, build a page about it now. It gives search engines time to index that page so they can feed it to the growing anticipating crowd.</p>
<p><strong> 12. Add more content</strong><br />
This is so important: keep adding content. Do this for a year and your site will be a top ranking website within one year. You could&#8217;ve been there now, if you started last year. Start now, so you&#8217;ll be there next year. You&#8217;ll thank yourself (and me) later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/creation/how-to-build-a-popular-website-according-to-google/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Make Money From Your Website</title>
		<link>http://www.site-tips.com/money/how-to-make-money-from-your-website/</link>
		<comments>http://www.site-tips.com/money/how-to-make-money-from-your-website/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 12:14:09 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Money]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/money/how-to-make-money-from-your-website/</guid>
		<description><![CDATA[When you&#8217;ve got your site in order and visitors are&#8230; well&#8230; visiting, your site can be a great source of income. People make money online all the time and there&#8217;s no reason why you shouldn&#8217;t be one of them. It&#8217;s very easy to make online money, especially with these tips:
Tip 1. PPC Advertising
With Pay Per [...]]]></description>
			<content:encoded><![CDATA[<p>When you&#8217;ve got your site in order and visitors are&#8230; well&#8230; visiting, your site can be a great source of income. People make money online all the time and there&#8217;s no reason why you shouldn&#8217;t be one of them. It&#8217;s very easy to make online money, especially with these tips:</p>
<h4>Tip 1. PPC Advertising</h4>
<p>With Pay Per Click advertising you get paid a small amount of money whenever somebody clicks on an ad on your site. You&#8217;ll probably know this from Google Adsense, but Yahoo! also has a great PPC program or you can use Text Link Ads or&#8230; The possibilities are endless and they are all really easy to set up. You can also use ads in your RSS feeds.</p>
<h4>Tip 2. Banner Ads</h4>
<p>Display one ore more banners on your website. There are companies that pay you for displaying their banners and your visitors don&#8217;t even have to click on them for you to make money. Usually you&#8217;ll get a fixed amount each month. But please, don&#8217;t use full page flash ads. Those are the ones that slide over your site when people visit it. They have a high click on rate, but they are also the most annoying ads that exist.</p>
<h4>Tip 3. Email Ads</h4>
<p>If you have a mailing list, you can put ads in the mails you send out. Don&#8217;t mail just ads though, most people will unsubscribe immediately or hit the spam button on their e-mail clients.</p>
<h4>Tip 4. Affiliate Programs</h4>
<p>There are many affiliate programs. An example you see often is Amazon&#8217;s program. You join Amazon&#8217;s affiliate program and show some ads of one or a few relevant books on your site. When people click on the ads and buy a book, you&#8217;ll get a small percentage.</p>
<h4>Tip 5. A Shop</h4>
<p>If you have products to sell, start a webshop on your site. If you own a real life shop, you might not even need that anymore after a while. You don&#8217;t have to pay expensive rent anymore, you can sell everything from home and you don&#8217;t even have to go to your shop in order to sell anything. You can lower your price since your costs are lower. That&#8217;s why people love buying things online.<br />
Starting an online shop may seem like a daunting task, where you have to do a lot of programming, security and worry about how people will pay. Don&#8217;t worry at all: a lot of free shopping cart software exists that are compatible with organisations such as PayPal. PayPal is just about the most famous and secure way of paying money online.</p>
<h4>Tip 6. Sell Merchandise</h4>
<p>If you have a unique site with original content, selling merchandise can be a great source of income. Many sites seem to be selling unique t-shirts, coffee mugs, pens, hats, etc. I imagine a site like cute overload sells dozens of t-shirts a day.</p>
<h4>Tip 7. Sell Your Website</h4>
<p>If you get the hang of creating websites and getting a fair amount of traffic, you might want to start selling websites. People pay big bucks for popular websites. This can be anything from dozens of dollars to millions and millions for very big sites. If you can make a website with a steady stream of visitors and make about $5 a day from, say, Google Adsense, you can easily sell that site for a few hundred dollars.</p>
<h4>Tip 8. Sell Your Digital Products</h4>
<p>Create more advance versions of the products you&#8217;ve made (lesson 3, tip 4) and sell them on your site. Again, you can create a variety of things: website templates, eBooks, tutorials, music, art, photos, software. If they have any value you can easily sell them. Still, think of what&#8217;s worth more to you: the traffic the free version brings or the money they can make you.</p>
<h4>Tip 9. Sell Services</h4>
<p>You can charge people in return for services you perform. This can be as easy as designing websites, answering questions in your area of expertise (private consulting), using an online application you&#8217;ve created and subscriptions to your eZine. Another form of selling your services is signing up for reviewme.com, where you can review websites upon request. The nice thing is that you&#8217;ll make more money per review if your site is more popular. Take a moment to think about what value you can provide to other people and if you can request money in return.</p>
<h4>Tip 10. Membership</h4>
<p>Create a part of your site filled with premium content which is only allowed to people who join as a paid member of your site. The free part of your site is used to show your knowledge about the subject and to attract visitors. The members benefit from all the unique things you have to offer, which can include the electronic products you&#8217;ve created in tip 7.</p>
<p>Last but not least: online marketing is a great way of making a lot of money. This may seem like a difficult thing, but people doing this once started without knowing how to do it, just like you. If you want to pursue a free form of living, working where you want, in a bar, in the train, in a park, you name it. It&#8217;s really possible. It&#8217;s not a dream. It&#8217;s also way beyond the scope of this free eCourse, but it is something real and achieveable. It might be smart to read up on how other people reached this goal and gain some confidence on that it can be done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/money/how-to-make-money-from-your-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 10 Search Engine Optimization Tips</title>
		<link>http://www.site-tips.com/traffic/top-10-search-engine-optimization-tips/</link>
		<comments>http://www.site-tips.com/traffic/top-10-search-engine-optimization-tips/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 12:11:54 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Traffic]]></category>

		<category><![CDATA[search engine optimization]]></category>

		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/traffic/top-10-search-engine-optimization-tips/</guid>
		<description><![CDATA[You did everything there is to do to get visitors to your site, and the traffic is slowly starting to pick up. The sources are diverse, which is a good thing since your traffic won&#8217;t drop too much if you loose just one source. Still, search engines are an important source of traffic and there [...]]]></description>
			<content:encoded><![CDATA[<p>You did everything there is to do to get visitors to your site, and the traffic is slowly starting to pick up. The sources are diverse, which is a good thing since your traffic won&#8217;t drop too much if you loose just one source. Still, search engines are an important source of traffic and there are many things you can do to get more traffic from them. The goal of search engines is to give their visitors the most relevant sites possible. It&#8217;s up to you to make it easy for them find out what your site is about.</p>
<p>Search engine optimization is the process of increasing the position of a website on the result pages of search engines. There is so much to learn about this, but in this lesson you&#8217;ll read about the best tips.</p>
<h4>Tip 1. Use the Best Keywords</h4>
<p>Find the best keywords for your site, and make sure you use keywords that people are searching for. You can do this by using a keyword tracker. There are many applications you can use, but I suggest you start with a great one that&#8217;s also free at <a href="http://inventory.overture.com/">http://inventory.overture.com</a> Just type some keywords you&#8217;re thinking of using for your site. The results might come up with some suggestions that&#8217;ll result in more searches and keywords you hadn&#8217;t thought of.</p>
<h4>Tip 2. Title, Meta and Other Tags</h4>
<p>Use the keywords you&#8217;ve found in tip 1 and use them in the title, meta, h1, h2 and h3 tags on your site. You can put some emphasis tags &lt;em&gt; and &lt;strong&gt; around a few important words on your pages. Not only does it tell search engines these words are important for your website, it also increases the searchability of your site for human visitors. In the end, they are the most important people you are writing for. Apart from having different content on each of your pages, it&#8217;s also important to optimize the title and meta tags for each page.</p>
<h4>Tip 3. Use Your Keywords in Links</h4>
<p>Having many backlinks is very important for your ranking and you&#8217;ve learned how to get those in Lesson 1: &#8220;<a href="http://www.site-tips.com/lesson-4-great-seo-tips.html">Get Incoming Links</a>&#8220;. It&#8217;s also very important to have your important keywords in those links. If you have a blog about baseball, but everybody links to your site using the words &#8216;bat&#8217; or &#8216;ball&#8217;, search engines can think your site is about animals or bowling and rank it higher in the wrong searches. This tip is also something you should be mindful about when using internal links in your site.</p>
<h4>Tip 4. Write Good XHTML</h4>
<p>A search engine has to be able to read and understand your page in order to determine what your site is about. Flash can&#8217;t be read, Ajax driven sites are difficult to understand at best. Iframes aren&#8217;t good either. The best thing you can do is write proper XHTML. If you want to know how a search engine will see your site, remove all styles (which should be in a seperate css files) and turn off javascript. Table layouts aren&#8217;t too big of a hurdle for search engines, but it&#8217;s a horror for people using text only browsers (think of visually handicapped people) since the reader doesn&#8217;t know in what order to read all the cells of a table.</p>
<h4>Tip 5. Validate Your Code</h4>
<p>To check your website&#8217;s code use these three links:</p>
<ol>
<li><a href="http://validator.w3.org/">XHTML validation</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/">CSS Validation</a></li>
<li><a href="http://validator.w3.org/checklink">Link checker</a> to check for broken links.</li>
</ol>
<p>See how the right keywords were used in those links (tip 3)? Those sites will be so happy about that.</p>
<h4>Tip 6. Create a Site Map</h4>
<p>If you have a lot of pages on your site, consider using a site map page. This is basically a page that lists all your pages alphabetically or categorized or both, with links. This means that visitors can get to any page in just two clicks. Search engines can also easily find all your pages using the site map. Again, don&#8217;t forget to use the right keywords in these links.</p>
<h4>Tip 7. Update Content Frequently</h4>
<p>Search engines come back to check your site regularly. They do this to always have the latest information on your site so they can show more relevant information to their users. Search engines, as well as people, seem to love sites that update their content often. This way they can tell an active website from an inactive one, giving it more importance in the former case.</p>
<h4>Tip 8. Use Friendly URLs</h4>
<p>Often, search engines will not index all your pages if your urls look like this: http://www.example.com/index.php?page=365 and page=366 etc. Using search engine friendly urls is better and can also give a search engine an idea of what the page is about. An example url is: http://www.example.com/index.php/search_engine_optimization.html. Most blogging software has the option to turn friendly urls on and off. Turn it on if your host supports it.</p>
<h4>Tip 9. Write For Human Beings</h4>
<p>While writing content with keywords in mind, remember that it&#8217;s the visitors that are going to use your site. Write good, compelling content for your visitors and keep them happy. Search engines just want to give good results to their users. Write for your visitors, and you&#8217;ll almost automatically write in a way that the search engines find important.</p>
<h4>Tip 10. Have Patience</h4>
<p>Google uses an aging delay for new sites. This basically means your website will not rank high for some time even if it&#8217;s very good and relevant. The only way to overcome this is to buy an established website. Other than that, it also takes time for other webmasters to discover your website and link to it. As your site grows and builds a reputation over time, your ranking in search engines will increase as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/traffic/top-10-search-engine-optimization-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Five Tips to Attract and Keep More Visitors</title>
		<link>http://www.site-tips.com/traffic/five-tips-to-attract-and-keep-more-visitors/</link>
		<comments>http://www.site-tips.com/traffic/five-tips-to-attract-and-keep-more-visitors/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 11:54:41 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/traffic/five-tips-to-attract-and-keep-more-visitors/</guid>
		<description><![CDATA[Tip 1. Tell-a-Friend
Put a tell a friend form on your site. This is basically a box where your visitors can enter the name and an email address of a friend that might be interested in your site. Don&#8217;t use this technique to collect e-mail addresses for your list. Those belong to people who did not [...]]]></description>
			<content:encoded><![CDATA[<h4>Tip 1. Tell-a-Friend</h4>
<p>Put a tell a friend form on your site. This is basically a box where your visitors can enter the name and an email address of a friend that might be interested in your site. Don&#8217;t use this technique to collect e-mail addresses for your list. Those belong to people who did not decide to receive email from you. In fact, make it clear in the mail you send that this is a one time mail only.</p>
<h4>Tip 2.  Make a Custom 404 Page</h4>
<p>An ever changing website will often have pages that disappear after a while, because you don&#8217;t need them anymore or because you moved them somewhere else. Visitors that come to those pages will see an ugly 404 error message. Besides the fact that this looks bad to your existing visitors, it will also make sure new visitors will not get to see your site. Create a custom 404 page that tells your visitors the requested page does not exist anymore and offer links to the main parts of your site instead. Chances are new visitors will click on it instead of on their back button.</p>
<h4>Tip 3. Use a Memorable Domain Name</h4>
<p>If people didn&#8217;t bother to bookmark your site last time, but in time they remember they saw good information on your site, a good domain name might be all that&#8217;s needed to get them back. There are no rules to what constitutes a good domain name, but generally: shorter is better. You can check whether names have already been registered at <a href="http://www.internic.com/whois.html">Internic</a>. Many hosting providers also offer this service. If all names seem to be taken, it&#8217;s time to get creative (Google anyone?), but try to come up with a relevant name first.</p>
<h4>Tip 4. Give Away Free Products</h4>
<p>Creating free products can work extremely well. If you create a product with giveaway rights, other people will pick it up and put it on their sites as well. They will do this because they they want to keep giving their visitors new things to keep them coming back. You win by placing a link in your product that will direct them to your site.</p>
<p>Some ideas of things you can create are an eBook, a software program you&#8217;ve written, an eCourse or a short tutorial, a video tutorial, website templates or some music you&#8217;ve made. People love to get free stuff. Be creative. Sometimes it can be appropriate to request something simple in exchange for your products. For example, ask visitors to send your site to two friends before allowing them to download your eBook.</p>
<h4>Tip 5. Do Offline Promotion</h4>
<p>With all the online things going on, don&#8217;t forget about offline promotions you can do. This is especially important if you have a local website. There are a great many things you can do offline, but for now we&#8217;ll stick to the cheaper ones. Make your url stand out as much as possible. If it&#8217;s not clear from your domain name what your site is about, try to add some &#8216;about&#8217; information as well. You can create business cards, hand them out to everybody. Go to events and seminairs and exchange cards. These places are also good for networking. Maybe you&#8217;ll meet somebody who has the means to give your site more exposure.</p>
<p>You could make stickers (don&#8217;t forget to put one on the bumper of your car), make flyers or do something controversial or very original. There&#8217;s a story about a man who created a lot of footprints with his url on it, going all across town leading up to his house. This made the news and got him a lot of exposure. He also had to remove the footsteps, so think things trough a little before you jump to action.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/traffic/five-tips-to-attract-and-keep-more-visitors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Keep Visitors Coming Back</title>
		<link>http://www.site-tips.com/traffic/keep-visitors-coming-back/</link>
		<comments>http://www.site-tips.com/traffic/keep-visitors-coming-back/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 11:51:55 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/traffic/keep-visitors-coming-back/</guid>
		<description><![CDATA[Now that you&#8217;ve got the visitors coming in, you want them to like your site and come back often. In lesson 1 you learned how to get visitors that are interested in your topic, so it shouldn&#8217;t be too hard, but still&#8230; There are a few things you should and should not do keep your [...]]]></description>
			<content:encoded><![CDATA[<p>Now that you&#8217;ve got the visitors coming in, you want them to like your site and come back often. In lesson 1 you learned how to get visitors that are interested in your topic, so it shouldn&#8217;t be too hard, but still&#8230; There are a few things you should and should not do keep your visitors happy.</p>
<h4>Create Fresh Content Often</h4>
<p>People will only keep coming back if they find something new everytime they get there. Take a look at just about any site you visit often, why do you go back there? Now you know&#8230; And as long as you&#8217;re creating new content often, see if you can add an RSS feed. If you&#8217;ve never heard about RSS before: it is a document that basically contains some info about the latest new items on your site. Whenever you add something to your site, you also change this document. People can then add your feed to their favorite RSS reader. This can be a program you install on your computer  or a website such as <a href="http://www.netvibes.com/">Netvibes</a> or <a href="http://www.google.com/ig">iGoogle</a>. It&#8217;s beyond the scope of this eCourse to teach how to create your own RSS feed, but most popular blogging software has this feature build in.</p>
<h4>A mailing list</h4>
<p>Another way of getting people back to your site is to start a mailing list. You can start a newsletter that periodically tells your visitors what has happened in your area of expertise during the last week or month of whatever period you decide to mail them. You can give people the complete information, or just some information and a few teasers about what&#8217;s new on your website. Don&#8217;t forget to include links to your site. You can start a mailing list by creating an optin box on your site. Many hosting sites support mailing lists, and you can use them. However, sending bulk mail can be seen as spam by some ISP&#8217;s, especially when you send it often. The mails you send out can reach less than 50% of the people on your list. So sometimes it&#8217;s better to use a commercial autoresponder service. Your mailings will then be send from another company, using your credentials. Those companies work hard to make sure that your mail will be received by as many people as possible. They also take care of people subscribing and unsubscribing.</p>
<h4>Easy Navigation</h4>
<p>When people come to your site, but can&#8217;t find what they are looking for, they will leave. People surfing the web have a notoriously little patience. So make everything on your site easy to find. In fact, if it takes more than two clicks for a visitor to reach what she or he is looking for, it&#8217;s too many. If you have a really big site, it can be 3 clicks.</p>
<p>You can also consider putting a search box on your site. Create one yourself or use one of the search engines. This will save you a lot of work, but it might be harder to show the search results as if they are a part of your site.</p>
<h4>Make it Easy to Bookmark</h4>
<p>Not everybody likes to do this, but you can add some &#8216;Bookmark this site&#8217; buttons to your pages. You can also add links that will add your site or blog post to social bookmarking sites.</p>
<h4>The Number 1 Rule!</h4>
<p>The number one rule of any successful website is to <em>create valuable content</em>. Remember that people will only come back when they liked what they found last time. This is more important than anything else. Other website owners will only take the trouble to link to you if you offer something worth seeing, reading or doing. Visitors will come back only for that reason. Only if you provide value, you can try to extract some value in return. This can be in the form of more visitors, more income from your site, building a good reputation or whatever your goal is for the site.</p>
<p>I can&#8217;t stress this enough: remember that content is king! Whether this is in the form of text (blog posts, reviews, news, articles, etc.), artwork, a service such as Google, Digg or Netvibes, or whatever form of content you can think of. <em>If it&#8217;s something of value, people will like it and come back.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/traffic/keep-visitors-coming-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Get Free Website Traffic</title>
		<link>http://www.site-tips.com/traffic/how-to-get-free-website-traffic/</link>
		<comments>http://www.site-tips.com/traffic/how-to-get-free-website-traffic/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 11:34:59 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Traffic]]></category>

		<category><![CDATA[free website traffic]]></category>

		<category><![CDATA[link building]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/traffic/how-to-get-free-website-traffic/</guid>
		<description><![CDATA[ When you want to attract visitors to your site, they have to come from somewhere. You can work on a high position in the search engines (covered in another post), but it&#8217;s hard to reach a top 10 spot, especially when the competition is fierce. It&#8217;s much faster to get free website traffic by [...]]]></description>
			<content:encoded><![CDATA[<p> When you want to attract visitors to your site, they have to come from somewhere. You can work on a high position in the search engines (covered in another post), but it&#8217;s hard to reach a top 10 spot, especially when the competition is fierce. It&#8217;s much faster to get <strong>free website traffic</strong> by getting more incoming links from other sites, preferably sites that have many visitors. This is also a more steady source of traffic. If a search engine lowers your ranking for whatever reason, you&#8217;re left with almost no visitors just like that.</p>
<h4>Get your link out everywhere!</h4>
<p>Try a few of the following tips, and, if you&#8217;re really serious about your traffic, try all of them. It might take a little work, but if you work on it consistently, your traffic will grow and grow and grow&#8230; A pleasant side effect of getting more exposure is that other people will start linking to your site, too.</p>
<h4>Tip 1. Leave Comments on Blogs</h4>
<p>Most blogs give visitors the opportunity to respond to their posts, with an option to enter your website&#8217;s address in a field. Find the most popular blogs on topics that are relevant to your website and leave relevant remarks. The earlier you reply, the higher your comment will be in the comment list and the more exposure your website will get. Don&#8217;t put your url in the comment text, unless it&#8217;s really relevant to the post you&#8217;re responding to. Too many url&#8217;s in one comment will probably be deleted automatically by any spam software the blogger has installed.</p>
<h4>Tip 2. Post in Forums</h4>
<p>Find the most popular forums in your website&#8217;s topic by typing &#8220;my topic forum&#8221; in Google. Start posting good quality answers to questions people have. Put your url with a small tagline in your signature. Don&#8217;t put your url in the post itself: people will think you&#8217;re just there to promote your site. Genuine answers will get you high quality traffic. These visitors are people that are really interested in your topic, so treat them well.</p>
<h4>Tip 3. Review Products and Services</h4>
<p>Sites that sell products or services, such as Amazon, allow you to create a profile and submit reviews. Try to submit high quality reviews, because you will be viewed as more of an expert in the related field. It might also help place your reviews in a more visible place. For example at Amazon, the highest rated reviews are shown first and only after that they are ordered chronologically.</p>
<h4>Tip 4. Submit Your Site to Social Bookmarking Sites</h4>
<p>There are some very popular websites out there, that can give you tons of traffic. Submitting your url to <a href="http://www.digg.com/">digg.com</a> and <a href="http://del.icio.us/">del.icio.us</a> can give you a serious amount of traffic. The huge number of visitors from Digg can even cause your site to become slow or unreachable if your host can&#8217;t handle that much traffic. This has a nickname know as &#8216;The Digg effect&#8217;. <a href="http://www.stumbleupon.com/">Stumble upon</a> can give you a steady stream of visitors that will never stop, as long as people will like your site. If you don&#8217;t have a <a href="http://flickr.com/">Flickr</a> and <a href="http://www.myspace.com/">MySpace</a> account, create one and get some exposure there.</p>
<h4>Tip 5. Manually Submit Your Site to the Major Search Engines</h4>
<p>You didn&#8217;t think I&#8217;d leave out this tip, did you? Be sure to submit manually, most search engines don&#8217;t like automated submission software. It takes a little while for your site to get indexed, so be patient.</p>
<h4>Tip 6. Submit Your Site to Directories</h4>
<p>Submit to as many web directories as possible. A few examples are: <a href="http://directory.google.com/">Google directory</a> and <a href="http://dir.yahoo.com/">Yahoo! directory</a>. Submit your site to the right categories only. It will take some time for your site to appear on the list, most directories preview submissions manually. If you have a blog, be sure to submit to the dozens of blog directories.</p>
<h4>Tip 7. Answer Questions at Yahoo!</h4>
<p>Another way of showing your expertise and leaving a link to your site at the same time. Answer people&#8217;s questions on <a href="http://answers.yahoo.com/">Yahoo! answers</a>. For the most relevant visitors, pick the most relevant categories.</p>
<h4>Tip 8. Do Link Exchanges</h4>
<p>Find relevant sites and mail them or using their contact form if they have one. Many site owners will like a link from your site and will gladly link back to you. They seem to get more reluctant as their sites are more popular, but it doesn&#8217;t hurt to ask.</p>
<h4>Tip 9. Start a Lens on Squidoo</h4>
<p>Start a lens on <a href="http://www.squidoo.com/">Squidoo</a>. Never heard of it? Find out what it is over <a href="http://www.squidoo.com/pages/faq">here</a>.</p>
<p>You can never have enough incoming links. Whenever you come to a site where people can leave a message, don&#8217;t hesitate to do it and leave your link. Don&#8217;t ever spam, but be relevant to the topics of the site. Build a positive image and people will keep coming to your site.  You&#8217;re well on your way on getting <em>free website traffic</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/traffic/how-to-get-free-website-traffic/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Internet Marketing</title>
		<link>http://www.site-tips.com/money/internet-marketing/</link>
		<comments>http://www.site-tips.com/money/internet-marketing/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 06:24:16 +0000</pubDate>
		<dc:creator>Eric Vergunst</dc:creator>
		
		<category><![CDATA[Money]]></category>

		<guid isPermaLink="false">http://www.site-tips.com/content/internet-marketing/</guid>
		<description><![CDATA[I&#8217;ve created a page where I will maintain a working process/step-by-step guide to internet marketing. It will contain links of sites you can use, strategies, etc. The ideas come from everywhere on the net, books, etc. Much ideas are from the Thirty Day Challenge (an absolutely amazing tutorial on internet marketing) and from the Warrior [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a page where I will maintain a working process/step-by-step <a href="http://www.site-tips.com/internet-marketing/"><strong>guide to <strong>internet marketing</strong></strong></a>. It will contain links of sites you can use, strategies, etc. The ideas come from everywhere on the net, books, etc. Much ideas are from the <a title="Thirty Day Challenge" href="http://www.thirtydaychallenge.com/">Thirty Day Challenge</a> (an absolutely amazing tutorial on internet marketing) and from the <a title="Warrior Forum" href="http://www.warriorforum.com/forum/">Warrior Forum</a>. The page is a work in progress. As I learn new tricks or techniques, I will put them on this page.</p>
<p>If you have any questions, tips or suggestions, please leave them in the comments on that page, not below this post.<a class="performancingtags" rel="tag" href="http://technorati.com/tag/online"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.site-tips.com/money/internet-marketing/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
