<?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>SBASEO &#124; SEO Los Angeles</title>
	<atom:link href="http://sbaseo.com/feed" rel="self" type="application/rss+xml" />
	<link>http://sbaseo.com</link>
	<description>Quality, Service, Results</description>
	<lastBuildDate>Sun, 19 May 2013 21:58:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>What Makes a Good Article?</title>
		<link>http://sbaseo.com/what-makes-a-good-article</link>
		<comments>http://sbaseo.com/what-makes-a-good-article#comments</comments>
		<pubDate>Wed, 15 May 2013 00:31:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=1135</guid>
		<description><![CDATA[Anyone can write an article or claim to be an article writer. It does, however, take effort and talent to produce an article that would be considered by many as a good article. The unfortunate truth is that the question, what makes a good article is not really one that has a black and white [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sbaseo.com/wp-content/uploads/2013/05/article.jpg"><img class="size-full wp-image-1138 alignleft" style="margin-right:10px; margin-bottom:10px;" title="article" src="http://sbaseo.com/wp-content/uploads/2013/05/article.jpg" alt="" width="250" height="250" /></a>Anyone can write an article or claim to be an article writer. It does, however, take effort and talent to produce an article that would be considered by many as a <strong>good article</strong>. The unfortunate truth is that the question, <strong>what makes a good article</strong> is not really one that has a black and white answer. This is because, by definition, the word good is a matter of personal opinion. There are several steps a writer can take to compose a good article.</p>
<p>First of all, you need to brainstorm the topic you want to write about. When you are just starting out as a writer it helps if you focus on topics that you are interested in. Writers (of all skill levels) produce a higher quality of work when it is on a topic they are genuinely interested in. Generally mechanics and rules of the English language are also very important. An individual is less drive to read an article if it is written with poor grammar, punctuation, and spelling.</p>
<p>Never be afraid to elevate your direction. This simply means to toss in a big word every once in a while. This requires the reader to do a little more thinking while reading your article. It may even require them to look up what the word means.  Using the occasional advanced vocabulary term makes the reader feel like you really know what you are talking about.</p>
<p>A reputable article is one that sticks to the facts and avoids getting to opinionated. Your readers are going to want to know what the truth is. They are not going to want to know what you think the truth is. Opinionated writing is something that should be reserved for writing blog posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/what-makes-a-good-article/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contact Form 7 &#8211; On Click Clear Value</title>
		<link>http://sbaseo.com/contact-form-7-on-click-clear-value</link>
		<comments>http://sbaseo.com/contact-form-7-on-click-clear-value#comments</comments>
		<pubDate>Fri, 29 Mar 2013 07:17:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=1002</guid>
		<description><![CDATA[It is very simple to get the value cleared on Contact Form 7 Open the file: /wp-content/plugins/contact-form-7/modules/text.php Replace this: $html = '&#60;input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"' . $atts . ' /&#62;'; With this: $html = '&#60;input type="text" name="' . $name . '" value="' . esc_attr( $value [...]]]></description>
			<content:encoded><![CDATA[<p>It is very simple to get the value cleared on Contact Form 7</p>
<p>Open the file:</p>
<p><strong>/wp-content/plugins/contact-form-7/modules/text.php</strong></p>
<p>Replace this:</p>
<pre>$html = '&lt;input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"' . $atts . ' /&gt;';</pre>
<div id="highlighter_882122">
<div>
<div>With this:</div>
</div>
<div>
<pre>$html = '&lt;input type="text" name="' . $name . '" value="' . esc_attr( $value ) . '"' . $atts . ' onfocus="if(this.value==\'';
$html = $html . esc_attr( $value ) . '\') this.value=\'\';" onblur="if(this.value==\'\') this.value=\'' . esc_attr( $value ) . '\';" /&gt;';</pre>
</div>
</div>
<p>Then Open the file:</p>
<p><strong>/wp-content/plugins/contact-form-7/modules/textarea.php</strong></p>
<p>Replace this:</p>
<pre>$html = '&lt;textarea name="' . $name . '"' . $atts . '&gt;' . esc_html( $value ) . '&lt;/textarea&gt;';</pre>
<p>With this:</p>
<div id="highlighter_628377">
<pre>$html = '&lt;textarea name="' . $name . '"' . $atts . ' onblur="if (this.value == \'\') {this.value = \'' . esc_html( $value ) . '\';}" onfocus="if (this.value == \'' . esc_html( $value ) . '\') {this.value = \'\';}"&gt;' . esc_html( $value ) . '&lt;/textarea&gt;';</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/contact-form-7-on-click-clear-value/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What’s New in SEO</title>
		<link>http://sbaseo.com/whats-new-in-seo</link>
		<comments>http://sbaseo.com/whats-new-in-seo#comments</comments>
		<pubDate>Fri, 02 Nov 2012 04:33:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=884</guid>
		<description><![CDATA[What’s New in SEO Currently, new SEO techniques are taking over as the easiest and quickest way to utilize web pages to their fullest potential. And, the reality is that SEO is still the best way to put your website, blog site or any other site on the internet straight to the top of search [...]]]></description>
			<content:encoded><![CDATA[<h4><strong>What’s New in SEO</strong></h4>
<p>Currently, new SEO techniques are taking over as the easiest and quickest way to utilize web pages to their fullest potential. And, the reality is that SEO is still the best way to put your website, blog site or any other site on the internet straight to the top of search engine results. I have compiled a list of what’s new and relevant in regards to SEO techniques.</p>
<h4><strong><em>Guest Blogging</em></strong></h4>
<p>Guest blogging is the newest way to increase your SEO. Guest blogging consists of having a specific area of your website or blog site that is strictly reserved for guest bloggers. Through guest blogging, you will be able to capture an entirely new audience, and a much larger audience than you currently have. Guest bloggers will bring their current audience to your website and that will increase your traffic significantly.</p>
<h4><strong><em>On Page Optimization</em></strong></h4>
<p>On page optimization has always been one of the easiest SEO techniques to increase your web traffic. But, the newest way to use on page optimization is to use the most relevant and modern keywords within your content. Use news sources and other pop culture references to increase your website traffic ten-fold. Internet users will constantly be inputting relevant keywords within the top search engines and if you include these keywords consistently, you will see a huge increase in the amount of website visitors you receive.</p>
<h4><strong><em>Changing the Design of Your Homepage</em></strong></h4>
<p>Changing the design of your homepage is one of the hidden ways you can use SEO to your advantage. An entire redesign of your homepage will trick search engines into viewing your website or blog site as new and therefore, raise your site to the top of the search engine results. The reality is that people are always looking for the best and brightest aspect on the internet and the only way to stay current and fresh is to redesign your home page. If you would really like to kick it up a notch, then changing the format of your site is another option you can use in order to boost where you rank within the internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/whats-new-in-seo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>October Google SEO Update</title>
		<link>http://sbaseo.com/october-google-seo-update</link>
		<comments>http://sbaseo.com/october-google-seo-update#comments</comments>
		<pubDate>Thu, 18 Oct 2012 22:27:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=879</guid>
		<description><![CDATA[October- Week 1 The month began as any other with a lot of algorithm updates by Google. Exact Match Domain update It came as a storm to many when the news came about Google’s new EMD (Exact Match Domain) algorithm. According to Google’s head of web spam Matt Cutts, it would affect 0.6% of English-us [...]]]></description>
			<content:encoded><![CDATA[<h2>October- Week 1</h2>
<p>The month began as any other with a lot of algorithm updates by Google.</p>
<h3>Exact Match Domain update</h3>
<p>It came as a storm to many when the news came about Google’s new EMD (Exact Match Domain) algorithm. According to Google’s head of web spam Matt Cutts, it would affect 0.6% of English-us related queries to a noticeable degree and is unrelated to Panda or Penguin.</p>
<p>Here, by implementing this algorithm what Google is trying to do is to eliminate low quality information sites those have domain names same as the keyword. Earlier many sites having low quality or irrelevant content used to make it to the first page but after the update it is supposed to change.</p>
<p>It was made clear, that it won’t be affecting websites  that have enough good quality relevant content about the keyword as they would be having enough of material needed by Google to rate it higher.</p>
<h3>Panda update #20</h3>
<p>Another update to the quality manager algorithm, “PANDA” rolled out on 27<sup>th</sup> of last month, according to Matt Cutts, the update would be affecting 2.4% of the normal English queries. Since it was an update to the algorithm, the effect was somewhat visible from the same day itself, but it took 3-4 days to complete the process. The web saw large degradation in rankings of some of the websites as the traffic decreased by as large as 80% on a few of them.</p>
<p>It’s not yet clear why Google publicly emphasized on EMD update which affected only 0.6% of the normal queries, despite having a Panda update which had much larger impact. Buzz around is Google tried to overlap the incompetency of EMD update by announcing a larger update. Also, there is a lot of confusion between the website owners about which update harmed them the most.</p>
<h3>Penguin update #3</h3>
<p>Friday the 5<sup>th</sup>, saw a small update in Google’s algorithm Penguin which aims at downgrading the rankings of sites which use black hat techniques to increase their page rank and appear on the first page of Google. The update was small and as quoted would affect only 0.3% of the normal english queries and 0.4% of non-english queries.</p>
<p>After a long 5 months wait, it was expected to be a huge update but yet again penguin remained nearly same to what it was when first rolled out in April this year.</p>
<h3>Penalties and rankings</h3>
<p>Google’s senior webmaster trends analyst, John Mueller revealed some important facts in respect to penalties levied to over-optimized websites. He told that the sites which are facing penalties due to black hat strategies, enforcements may be removed if the sites remove the elements that led to it.</p>
<p>He also added that a lifted penalty doesn’t guarantee old rankings, i.e. after the removal of the it the site will again have to prove through legal and Google’s recognized methods, that it is capable of delivering to the customers what its ranking shows.</p>
<p>This is due to the fact that the old rankings were based on the links and “over-optimization” which don’t meet the guidelines maintained by Google. So the ranking is purely to be dependent on the quality of the links that the website currently has. So the only way to get good rankings remains to use white-hat SEO methods that are Google approved or are in accordance to the Google’s anti-spam algorithms.</p>
<p>This is all from the first week of October, which seemed to be a long one as nearly all of Google’s major algorithms saw changes and updates. Will have to see what the real long-term impact of these changes will be on Search Engine Optimization.</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/october-google-seo-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three Types of SEO</title>
		<link>http://sbaseo.com/three-types-of-seo</link>
		<comments>http://sbaseo.com/three-types-of-seo#comments</comments>
		<pubDate>Thu, 18 Oct 2012 22:26:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=877</guid>
		<description><![CDATA[SEO is a technique in which webmasters design a website such that, it gets good page ranking, and appears on top of the results when a query is made. It has been in existence from mid 90s and still is the hottest thing on Internet. Earlier search engines mainly relied on keywords that were in [...]]]></description>
			<content:encoded><![CDATA[<p>SEO is a technique in which webmasters design a website such that, it gets good page ranking, and appears on top of the results when a query is made. It has been in existence from mid 90s and still is the hottest thing on Internet. Earlier search engines mainly relied on keywords that were in meta tag, it was very easy for the webmasters to manipulate the results. As time passed developments took place and search engines started to use complex algorithms to rate sites and determine page ranks.</p>
<p>In the same way SEO techniques also got complex. Now the condition is such that a lot of webmasters are earning their livelihood through this.</p>
<p>There are many ways of SEO which are broadly categorized into three parts:</p>
<h2>THREE SEO Types</h2>
<h3>White Hat Techniques</h3>
<p>Those websites which are optimized in accordance to rules and policies of search engines are said to be using White-Hat-Techniques or Ethical SEO. A website that is “optimized” yet have content relevant to queries and are genuine, a website that uses only natural backlinks which associate to similar content, a website that aims at human users and not search engines are said to be using White-Hat-Techniques. The most important benefit of White Hat Techniques is even if the SEO is stopped the quality of the content maintains the ranking of the website. The long term investors use this technique as it requires less optimization and more data management. White Hat Techniques use the consumer to get good positions and rankings.</p>
<h3>Gray Hat Techniques</h3>
<p>Gray being a shade in between white and black has properties of both colors. Gray Hat Techniques are those ways through which websites are optimized using tactics that don’t exactly follow the policies of search engines but somehow manage to escape from the eyes of algorithms. These may not be reliable as they are designed keeping in mind the present algorithm. Since there are updates every now and then, so in case of a data refresh the sites may be penalized cause gray is more black than white. Gray Hat techniques are not in much demand these days just because of its unreliability.</p>
<h3>Black Hat Techniques</h3>
<p>Most famous SEO type is the Black Hat one. More than 70% of SEO today is based on this only. These are the unofficial methods, which search engines strictly disapprove of. Once found guilty of Black Hat, the website may be blocked or severely penalized. The algorithms are made and updated keeping in view of these tactics. These are very aggressive and generally result in quick increase in page rank. But once SEO is stopped the ranking falls drastically. So, constant optimization is required. Black Hat Techniques are normally used by those who are looking for quick financial gain. Black Hat Techniques manipulate the search engine in order to get more human traffic.</p>
<p>Search engines will keep updating the algorithms and webmasters the SEO techniques. So this game is never ending, if search engine are in existence the SEO methods will follow.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/three-types-of-seo/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Press Release Submission for Search Engine Ranking</title>
		<link>http://sbaseo.com/press-release-submission-for-search-engine-ranking</link>
		<comments>http://sbaseo.com/press-release-submission-for-search-engine-ranking#comments</comments>
		<pubDate>Wed, 17 Oct 2012 23:33:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=875</guid>
		<description><![CDATA[Any time there is anything newsworthy happening in which your business is involved, create a Press Release about that newsworthy event. Then, use one of the many online press release distribution agencies to send it to the major news resources like Google and Yahoo News on your behalf for free. Many online business people seem [...]]]></description>
			<content:encoded><![CDATA[<p>Any time there is anything newsworthy happening in which your business is involved, create a Press Release about that newsworthy event. Then, use one of the many online press release distribution agencies to send it to the major news resources like Google and Yahoo News on your behalf for free.</p>
<p>Many online business people seem to be stumped by the idea of using Press Releases because they cannot think of anything newsworthy to write about. However, if there is nothing that exciting going on, how about creating or starting an event that you can write about?</p>
<p>For example, you could stage some crazy publicity stunt in your local high street or get involved in a local charity event or fete. You could sponsor a local sports event or host an event where mentally disadvantaged children are taught to play computer games.</p>
<p>Really, there is absolutely no excuse for not using Press Releases but the fact is, most online business entrepreneurs tend to stay well clear of press releases. This is good news to you, because it means that the competition is not as hot as it might be in other areas.</p>
<p>Moreover, if you distribute your press release to the major press release sites and it gets picked up by one of the major news bureaus, this single press release can create a torrent of back links as your release is republished on websites right, left and center.</p>
<p>The thing is, press releases also have more credibility among all the other publicity methods. While reading a press release, readers do not think that they are reading some other disguised advertisement about a product. And they are thus more willing to trust what they read in a press release.</p>
<p>Here is some press release writing tips that you should take note of:</p>
<ol>
<li>Make sure the information is newsworthy.</li>
<li>Make use of quotes from other people</li>
<li>Start with a brief description of the news, then state who announced it, and not the other way around.</li>
<li>Tell the audience that the information is intended for them and why they should continue to read it.</li>
<li>Ensure that the first paragraph answers some of the important questions, such as Who, What, When, Where and Why.</li>
<li>Avoid flowery language, redundant expressions and unnecessary adjectives.</li>
<li>Use a catchy headline so that that your press releases will grab attention for people to read it.</li>
<li>Provide as much contact information as possible so it will be easy for interested prospects to contact you.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/press-release-submission-for-search-engine-ranking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Document Sharing for Search Engine Ranking</title>
		<link>http://sbaseo.com/document-sharing-for-search-engine-ranking</link>
		<comments>http://sbaseo.com/document-sharing-for-search-engine-ranking#comments</comments>
		<pubDate>Wed, 17 Oct 2012 23:33:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=873</guid>
		<description><![CDATA[Document Sharing sites are sites that allow you to upload documents, including PDF files, Word Docs, PowerPoint slides, Open Office documents, and so on. So other than submitting articles that you’ve written to be published on article directories, you can upload the original word doc file to document sharing sites. Cool thing is, content that [...]]]></description>
			<content:encoded><![CDATA[<p>Document Sharing sites are sites that allow you to upload documents, including PDF files, Word Docs, PowerPoint slides, Open Office documents, and so on.</p>
<p>So other than submitting articles that you’ve written to be published on article directories, you can upload the original word doc file to document sharing sites.</p>
<p>Cool thing is, content that is uploaded to this top document sharing sites get indexed in the search engines FAST! Your documents could show up in the search engine results for keywords you’re targeting within 24 hours.</p>
<p>Because unlike most article directories, there’s no approval period for document sharing sites and you documents get approved instantly.</p>
<p>Another benefit to these sites it that these sites normally allow you to write a description of your document. So just like article marketing, you include a live link back to your site and gain a precious backlink!</p>
<p>Additionally, your documents themselves can often have live links as well. So you could possibly gain two from uploading one simple document.</p>
<p>All in all, this is the perfect method to drive backlinks and traffic fast to your website. It&#8217;s a lot like article marketing, but a whole lot easier and even more effective!</p>
<p>Another thing I like is for most sites, you can mass upload articles. This means you can select ten articles and upload them automatically. It will take you less than 3 minutes to upload 10 articles!</p>
<p>If you haven&#8217;t been making use of this strategy (it&#8217;s amazing how few people are!) then it&#8217;s time to get started.</p>
<p>While many of these document sharing sites get a lot of &#8220;Google love,&#8221; you&#8217;ll want to do some things to give your content an extra boost so it gets picked up faster. Don&#8217;t worry &#8212; this won’t take long!</p>
<p>As soon as you submit your content, you can ping it at www.pingoat.com or you could add the URLs to social bookmarking sites. It’s entirely up to you.</p>
<p>I shan’t go into details on how to sign up and upload your documents because it’s really easy.</p>
<p>Here are the top 2 sites that you should submit to:</p>
<p>http://www.scribd.com</p>
<p>http://www.docstoc.com</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/document-sharing-for-search-engine-ranking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article Marketing for SEO</title>
		<link>http://sbaseo.com/article-marketing-for-seo</link>
		<comments>http://sbaseo.com/article-marketing-for-seo#comments</comments>
		<pubDate>Wed, 17 Oct 2012 23:24:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=871</guid>
		<description><![CDATA[Article marketing is an old method. While many will question its effectiveness today, it shouldn’t be ignored completely. What you need to do is sit down and write a series of 350-550 word articles, each of which focuses on one of your main keyword terms. Use the keyword term in the article title, the first [...]]]></description>
			<content:encoded><![CDATA[<p>Article marketing is an old method. While many will question its effectiveness today, it shouldn’t be ignored completely.</p>
<p>What you need to do is sit down and write a series of 350-550 word articles, each of which focuses on one of your main keyword terms. Use the keyword term in the article title, the first and last paragraphs and perhaps twice more somewhere else in the body text.</p>
<p>Create a two or three line description of your article, focusing on telling anyone who reads this description exactly why they should read your article. This is in effect a punchy two or three sentence ‘sales pitch’ for your article, because it is this description which decides whether someone who sees it will take the trouble to read your article or not.</p>
<p>When you submit articles to the major directories, you must also include what is known as a resource box, which is a short description of you or your business. Once again, this resource box is your ‘sales pitch’ as to why someone should visit your site, so make sure that you tell them.</p>
<p>For example, ‘Joe Blow has a blog where he writes about how loss’ is a dead loss! Try something like ‘Joe Blow is an acknowledged hair loss expert. His hair was disappearing fast until he discovered an amazing organic hair loss remedy that stops hair loss dead in its tracks. Get Joe’s exclusive FREE report to stop your hair loss now by clicking organic hair loss remedy or go to http://www.YourSite.com/OrganicHairLossRemedy’</p>
<p>The keyword term is mentioned twice, once as an anchor link, plus the URL is included for directories that do not accept direct links. There is an attractive free report on offer and a clear call to action telling the reader exactly what they need to do to get the report.</p>
<p>A resource box description like this does two things. First, it will drive a ton of targeted visitors to your site.</p>
<p>In addition, it will generate an anchor text link to the appropriate page on your site from the directory where the article is published.</p>
<p>Most directories have achieved fairly high Google Page Rank, so this link in itself is extremely valuable.</p>
<p>Moreover, most article directories allow Webmasters to download articles for republication on their site or in their newsletter as long as they include the original author information, including the back links. Consequently, if you create an article that is downloaded and republished many times, one article can generate dozens or even hundreds of links. What is more, it does it all on autopilot without any input from you.</p>
<p>Publishing articles on directory sites is a numbers game. The more articles you publish, the more links you generate.</p>
<p>For this reason, you should use some of your articles to generate links to internal pages on your site to spread the link power more evenly across the whole of your site.</p>
<p>Try to write two or three articles every day using different keyword phrases (once you have practiced, this should take from one hour to 90 minutes) before submitting them to the following top few article directories:</p>
<p>EzineArticles</p>
<p>GoArticles</p>
<p>ArticlesBase</p>
<p>SearchWarp</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/article-marketing-for-seo/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Video Marketing to Get Easy Search Engine Ranking &#8211; Part 3</title>
		<link>http://sbaseo.com/video-marketing-to-get-easy-search-engine-ranking-part-3</link>
		<comments>http://sbaseo.com/video-marketing-to-get-easy-search-engine-ranking-part-3#comments</comments>
		<pubDate>Wed, 17 Oct 2012 23:23:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=869</guid>
		<description><![CDATA[Using PowerPoint to create your video If you use the Microsoft Office suite of programs, you will have PowerPoint installed on your computer. If not, download the free Open Office suite of programs and use the Presentation program to do pretty much the same thing. You can use PowerPoint or Presentation to make as many [...]]]></description>
			<content:encoded><![CDATA[<p>Using PowerPoint to create your video</p>
<p>If you use the Microsoft Office suite of programs, you will have PowerPoint installed on your computer. If not, download the free Open Office suite of programs and use the Presentation program to do pretty much the same thing.</p>
<p>You can use PowerPoint or Presentation to make as many different types of video as you can create almost any kind of presentation and video it. This again represents a very quick and easy way of creating a relatively simple video.</p>
<p>And although you would not necessarily think of a PowerPoint presentation being entertaining, you can make it pretty good fun if you do things right.</p>
<p>You can also make the message that your video carries very powerful as well.</p>
<p>Remember that the primary purpose of creating videos is to convince someone that just watched your video to visit your site to see what else you have to offer.</p>
<p>One highly effective way of doing this is to create a two-part video presentation, only one part of which is published externally on sites like YouTube, Google video etc. The other half is published on your own site so that the viewer who has watched the first half and wants to get the rest has to visit your site to do so.</p>
<p>An effective and easy way of doing this using a PowerPoint presentation is to firstly find three or four trivia questions in your market.</p>
<p>The first slide of your presentation will be the first question, which you should leave visible for a few seconds to allow your viewer time to think of the correct answer.</p>
<p>The second slide in your presentation should produce the correct answer to the question. Next, you show the second question and again, leave it visible for a few seconds to allow the viewer time to come up with the answer before providing it with your next slide.</p>
<p>Now, if you have four questions – which I have found to be the best number from my own testing of this particular strategy – you provide the third question and answer in exactly the same way.</p>
<p>However, when it comes to the fourth question, you provide only the question before the last slide which tells the viewer that they have to visit your site in order to get the answer. If you have targeted your trivia questions accurately enough at people in your marketplace, this extremely simple strategy has the capability of driving hundreds of curious visitors to your site, so it is one that is definitely worth trying.</p>
<p>Once your presentation is complete, you need to convert it into a video which you can do by using free video screen capture software such as CamStudio orJing (the latter will also work with a Mac too).</p>
<p>More screen capture options…</p>
<p>Once you have downloaded and installed either of these video screen capture program, you can use them to make videos of almost anything you do using your computer. Indeed, the only restricting factor applicable to video screen capture videos is your own imagination and the limits of the processes that you can demonstrate on your monitor.</p>
<p>However, if there is anything that you do on a regular basis with your computer that other people in your niche would be interested in, you have a perfect subject for a short video. And even if there is nothing that springs immediately to mind, you might be surprised how easy it is to make informative videos using screen capture software that other people in your market really will be interested in.</p>
<p>One thing that I often do when I am trying to think of a good video subject is look at the software that I have installed on my computer.</p>
<p>Each of those programs has a specific operating method and although you may think that everyone knows how to use the software that you have, this is simply not true. There will be many people out there for whom a training video would be invaluable and as you&#8217;ll discover a little later, there are thousands of training videos already on sites like YouTube that are extremely popular for this very reason.</p>
<p>As an example, if you have just downloaded and installed one of the video recorders highlighted in the previous section, you&#8217;re going to learn how to use the software. Consequently, why not make a video to show people how easy and quick it really is to use the software?</p>
<p>Basically, if something – anything in fact – can be effectively demonstrated on your computer screen, you have the basis of a video right there.</p>
<p>Granted, making videos in this way may seem contrary to what I suggested earlier about making entertaining videos because demonstrating something on your computer screen in this way is hardly likely to be enthralling.</p>
<p>Nevertheless, it is still a fact that ‘how to’ tutorial videos are extremely popular if they focus on demonstrating something that lots of people in your niche need to know about.</p>
<p>Once you have your video ready together with your title and description, you are ready to submit your work.</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/video-marketing-to-get-easy-search-engine-ranking-part-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Marketing to Get Easy Search Engine Ranking &#8211; Part 2</title>
		<link>http://sbaseo.com/video-marketing-to-get-easy-search-engine-ranking-part-2</link>
		<comments>http://sbaseo.com/video-marketing-to-get-easy-search-engine-ranking-part-2#comments</comments>
		<pubDate>Wed, 17 Oct 2012 23:22:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://sbaseo.com/?p=863</guid>
		<description><![CDATA[How do you make your video in the first place? There are many different ways to create videos for marketing purposes, with the way that you do so being dependent to a certain extent on the product or service that you are promoting. You can (and should) use any or all of the following video [...]]]></description>
			<content:encoded><![CDATA[<p>How do you make your video in the first place?</p>
<p>There are many different ways to create videos for marketing purposes, with the way that you do so being dependent to a certain extent on the product<br />
or service that you are promoting. You can (and should) use any or all of the following video production tactics because by doing so, you will quickly establish what works best in your particular marketplace or niche.</p>
<p>Using Animoto to make videos…</p>
<p><a href="http://animoto.com/">Animoto</a> is a site where you can create a unique 30 second video ‘short’ for free which can then be uploaded directly to YouTube from within animoto itself.</p>
<p>To get started, visit the site to create your free account. Your video, you will need approximately a dozen still images that you can upload to the site as the basis of the 30 second video ‘short’. If you already have appropriate images that you can use, this is extremely simple but even if you don&#8217;t, you should find suitable images by searching a stock photo site like <a href="http://www.sxc.hu/">stock.xchang</a>.<br />
Once you are logged in, click the 30 second video link to start uploading these images to animoto:</p>
<p><a href="http://sbaseo.com/wp-content/uploads/2012/10/1.png"><img class="alignnone size-full wp-image-864" title="1" src="http://sbaseo.com/wp-content/uploads/2012/10/1.png" alt="" width="425" height="349" /></a></p>
<p>You can do so either by downloading the images directly from the stock image site (if that is where the images are coming from) or by uploading them from your own computer:</p>
<p><a href="http://sbaseo.com/wp-content/uploads/2012/10/2.png"><img class="alignnone size-full wp-image-865" title="2" src="http://sbaseo.com/wp-content/uploads/2012/10/2.png" alt="" width="363" height="432" /></a></p>
<p>You can even use images from the animoto collection but from my own experience, you are unlikely to find a sufficient number of images that are appropriate to your business for this to be workable. Consequently, it is better to use either your own images or those that you have downloaded from a stock photo site to make the video you want.</p>
<p>Next, you add a soundtrack from the animoto collection and that is basically the job finished. All you need to do is create your description and title before uploading the video directly to YouTube.<br />
The advantage of using animoto to make 30 second video shorts in this way is that it is extremely quick and easy to do. The downside is that because you are using still images for your video, it is probably not going to be the most entertaining video ever made, although even the most attention- challenged video viewer should be able to stick with you for at least 30 seconds!</p>
<p>The other negative about using animoto is that you can only upload the finished video to one networking site and whilst YouTube is unquestionably the biggest video network, this is nevertheless a limiting factor that may partially restrict the effectiveness and profitability of your video marketing efforts:</p>
<p><a href="http://sbaseo.com/wp-content/uploads/2012/10/3.png"><img class="alignnone size-full wp-image-866" title="3" src="http://sbaseo.com/wp-content/uploads/2012/10/3.png" alt="" width="500" height="280" /></a></p>
<p>Although you can embed the video on your site or blog, you cannot officially download the video so that you can send it to other networking sites for example, although I recently discovered completely by accident that you can download animoto video shorts if you use the free version of Real Player on your computer:</p>
<p><a href="http://sbaseo.com/wp-content/uploads/2012/10/4.png"><img class="alignnone size-full wp-image-867" title="4" src="http://sbaseo.com/wp-content/uploads/2012/10/4.png" alt="" width="500" height="210" /></a></p>
<p>I don’t think that downloading the video so that you can upload it to other networking sites is in breach of any animoto rules but if you are planning to do so, make sure that you check whether it is allowable or not. Alternatively, you could wait until the video appears on YouTube and then download it from there for free.</p>
]]></content:encoded>
			<wfw:commentRss>http://sbaseo.com/video-marketing-to-get-easy-search-engine-ranking-part-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk
Object Caching 704/834 objects using disk

 Served from: sbaseo.com @ 2013-05-22 03:53:32 by W3 Total Cache -->