<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Search Engine Optimization (SEO) News and Tips</title>
	<atom:link href="https://rank1st.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://rank1st.wordpress.com</link>
	<description>Get 1st Rank in major Search Engine</description>
	<lastBuildDate>Thu, 23 Apr 2015 16:26:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rank1st.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://secure.gravatar.com/blavatar/a3be0c997d0e7c93f468c0ef57f65cbc88818c54129f10472f67c347c4a31fcb?s=96&#038;d=https%3A%2F%2Fs0.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Search Engine Optimization (SEO) News and Tips</title>
		<link>https://rank1st.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://rank1st.wordpress.com/osd.xml" title="Search Engine Optimization (SEO) News and Tips" />
	<atom:link rel='hub' href='https://rank1st.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Mobile SEO Best Practices</title>
		<link>https://rank1st.wordpress.com/2015/04/23/mobile-seo-best-practices/</link>
					<comments>https://rank1st.wordpress.com/2015/04/23/mobile-seo-best-practices/#respond</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Thu, 23 Apr 2015 16:24:09 +0000</pubDate>
				<category><![CDATA[Mobile SEO]]></category>
		<category><![CDATA[Mobile Optimization]]></category>
		<category><![CDATA[mobile seo]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=77</guid>

					<description><![CDATA[Every year people spend more and more time on their mobile devices and tablets, but many websites still aren&#8217;t designed to account for different screen sizes and load times. Mobile optimization takes a look at site design, site structure, page speed, and more to make sure you&#8217;re not inadvertently turning mobile visitors away. More and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Every year people spend more and more time on their mobile devices and tablets, but many websites still aren&#8217;t designed to account for different screen sizes and load times. Mobile optimization takes a look at site design, site structure, page speed, and more to make sure you&#8217;re not inadvertently turning mobile visitors away.</p>
<p>More and more people get online through their smartphone and tablet these days. So, it is important that we as designers and developers address how our websites are displayed on these devices.</p>
<p>Some Technical point to be considered while designing your Mobile Friendly Website.</p>
<p><strong>Meta Viewport Tag</strong></p>
<p>The meta viewport is an HTML tag for specifying viewport width and controlling page scale. Using this tag, we can<strong> set the page zoom when it is first loaded</strong>, the <strong>maximum zoom allowed</strong> for the page, and also <strong>disable zoom capability</strong>.</p>
<p>Below is an example of how we commonly add meta viewport tag inside the<strong>&lt;head&gt;</strong>.</p>
<table width="729">
<tbody>
<tr>
<td>1</td>
<td width="698"><strong>&lt;meta</strong> <strong>name=&#8221;viewport&#8221;</strong> <strong>content=&#8221;width=device-width; initial-scale=1.0; maximum-scale=1.0;&#8221;&gt;</strong></td>
</tr>
</tbody>
</table>
<p>You can also add it inside your stylesheet this way:</p>
<table width="650">
<tbody>
<tr>
<td>12</p>
<p>3</td>
<td width="619"><strong>@-viewport {</strong><strong>    width: device-width;</strong></p>
<p><strong>}</strong></td>
</tr>
</tbody>
</table>
<p>The meta viewport tag is an indispensible tag (together with Media Queries) if you are building a responsive website. However, you can technically set viewport meta tag for non-responsive web design all the same.</p>
<ol start="2">
<li><strong> Media Queries</strong></li>
</ol>
<p>Media Queries let you shift the styles of your website at <strong>specified break points</strong>. Not everything from your website can properly fit on a narrow viewport size of a mobile device.</p>
<p>By using Media Queries, you can <strong>add specific style rules for specific viewport width</strong>. We can also apply styles based on the screen orientation and the screen pixel density.</p>
<p>You can embed Media Queries either directly in the stylesheet link:</p>
<table width="952">
<tbody>
<tr>
<td>1</td>
<td width="921"><strong>&lt;link rel=&#8221;stylesheet&#8221;</strong> <strong>media=&#8221;screen and (orientation: portrait) and (min-width: 960px), projection&#8221;</strong> <strong>href=&#8221;style.css&#8221;</strong> <strong>/&gt;</strong></td>
</tr>
</tbody>
</table>
<p>Or code it inside the stylesheet, which is the most common way used by developers.</p>
<table width="650">
<tbody>
<tr>
<td>12</p>
<p>3</td>
<td width="619"><strong>@media screen</strong> <strong>and (max-width: 960px) {</strong><strong>    /** Style Rules here **/</strong></p>
<p><strong>}</strong></td>
</tr>
</tbody>
</table>
<ol start="3">
<li><strong> Modernizr</strong></li>
</ol>
<p><a href="http://modernizr.com/">Modenizr</a> is a JavaScript for browser/device feature detection. Browsers vary and they <strong>may or may not support certain features</strong>. When building a website for mobile you probably will use new and cutting edge features of CSS3 and HTML5, which unfortunately are <strong>not supported in earlier browsers</strong> (not everyone uses the latest of browsers).</p>
<p>Modernizr allows you to give fallback of functions and presentation for less capable browsers by adding extra HTML classes in the body tag and a set of method.</p>
<p><strong>CHECK OUT:</strong><a href="http://www.hongkiat.com/blog/modernizr/">Getting Started with Modernizr</a></p>
<ol start="4">
<li><strong> TouchSwipe</strong></li>
</ol>
<p><strong><a href="http://labs.rampinteractive.co.uk/touchSwipe/">TouchSwipe</a></strong> is a jQuery plugin to <strong>enable touch interaction for websites (phone or tablet)</strong>. It supports a set of common gestures like Swipe, Pinch, Zoom and Scroll.</p>
<p>With more devices dropping physical keyboards and enabling the screen for touch, you should consider applying this plugin on your website for a better and richer user experience.</p>
<ol start="5">
<li><strong> iOS Icons</strong></li>
</ol>
<p>The first thing you see after unlocking your iPhone (or iPad) is the app icon. Apart from app icons iOS will also display icons for websites that have been added on the Home Screen.</p>
<p>To do this for your website, simply add the following link element within the<strong>&lt;head&gt;</strong> tag.</p>
<table width="676">
<tbody>
<tr>
<td>12</p>
<p>3</td>
<td width="645"><strong>&lt;link</strong> <strong>rel=&#8221;apple-touch-icon&#8221;</strong> <strong>href=&#8221;touch-icon-iphone.png&#8221;</strong> <strong>/&gt;</strong><strong>&lt;link</strong> <strong>rel=&#8221;apple-touch-icon&#8221;</strong> <strong>sizes=&#8221;72&#215;72&#8243;</strong> <strong>href=&#8221;touch-icon-ipad.png&#8221;</strong> <strong>/&gt; </strong></p>
<p><strong>&lt;link</strong> <strong>rel=&#8221;apple-touch-icon&#8221;</strong> <strong>sizes=&#8221;114&#215;114&#8243;</strong> <strong>href=&#8221;touch-icon-iphone-retina.png&#8221;</strong> <strong>/&gt;</strong></td>
</tr>
</tbody>
</table>
<p>Alernatively, you may remove those link elements, but ensure that the icons are saved in the root directory, and prefixed with <strong>apple-touch-icon-*</strong> on its name.</p>
<ol start="6">
<li><strong> Splash Screen</strong></li>
</ol>
<p><strong>Splash Screen</strong> is the first image that is displayed when users start an application. The screen tells the users that the app is loading. It is common to use the Splash Screen as an opportunity to show off brand identity.</p>
<p>To add it to your website, simply insert the following lines at the <strong>&lt;head&gt;</strong>.</p>
<table width="650">
<tbody>
<tr>
<td>1</td>
<td width="619"><strong>&lt;link</strong> <strong>rel=&#8221;apple-touch-startup-image&#8221;</strong> <strong>href=&#8221;splash-screen.png&#8221;</strong> <strong>/&gt; </strong></td>
</tr>
</tbody>
</table>
<p>When users open your website through the <strong>Home Screen</strong>, the image assigned in this link element will be displayed briefly before users see the whole website.</p>
<p>Although using Splash Screen to display brand is <span style="text-decoration:underline;">actually against the guideline</span>, but as long as the the Splash Image is very well designed and loads briefly, it can gives better user experience and adds a cool factor to your website.</p>
<p><strong>Final Thought</strong></p>
<p>The mobile device revolution has changed the way we, web developers, build websites. And, at least, these elements that we have discussed above should be included in your Web document to make your website turn out well for viewing on mobile platforms, like iOS and Windows 8.</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2015/04/23/mobile-seo-best-practices/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
		<item>
		<title>Advanced SEO Services by Indian SEO Expert</title>
		<link>https://rank1st.wordpress.com/2013/08/07/advanced-seo-services-by-indian-seo-expert/</link>
					<comments>https://rank1st.wordpress.com/2013/08/07/advanced-seo-services-by-indian-seo-expert/#respond</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Wed, 07 Aug 2013 10:09:35 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=55</guid>

					<description><![CDATA[Advanced SEO Services by Indian SEO Expert Competitive Intelligence for SEO: Why do CI for SEO? More Reasons for CI How to Do Competitive Intelligence Analysis for SEO Off page Factors How to Analyze What You Collect Social Media and SEO: Social Media Platforms Social Media Guidelines Social Media and SEO Measure Social Media Reach [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Advanced SEO Services by <strong>Indian SEO Expert</strong></p>
<p>Competitive Intelligence for SEO:<br />
Why do CI for SEO?<br />
More Reasons for CI<br />
How to Do Competitive Intelligence Analysis for SEO<br />
Off page Factors<br />
How to Analyze What You Collect<br />
Social Media and SEO:<br />
Social Media Platforms<br />
Social Media Guidelines<br />
Social Media and SEO<br />
Measure Social Media Reach<br />
Schema.org and SEO:<br />
Schema.org and Google<br />
Schema.or Resources<br />
5 Schema.org Applications<br />
Site Technical Issues:<br />
Diagnosing Problems<br />
URL Canonicalization<br />
301 redirects<br />
Crawler and Indexing issues<br />
Source code Validation<br />
Persuasive Copywriting for the Web:<br />
Anatomy of A Sales Letter<br />
Components for Building Sales Copy by Component<br />
Examples by Category<br />
Student Worksheets and Examples<br />
The Power of Article Writing:<br />
Life After Google Panda Update<br />
Guidance on Writing Quality Articles<br />
Easy Ways To Find Markets For Your Articles<br />
Creative Commons<br />
Press Releases and SEO:<br />
Tips for Press Releases<br />
9 Reasons to Optimize Your Press Releases<br />
Tips for Professional SEOs:<br />
New Customers the smartest Way<br />
Build A Genuine Reputation Right Now<br />
How To Convert Prospects to Clients by Establishing Credibility<br />
Steps for Building Powerful Proposals<br />
Building and Defining Your Business in the SEO Industry<br />
Questions and Answers<br />
Certification Exam</p>
<p>contact at iseweb@gmail.com</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2013/08/07/advanced-seo-services-by-indian-seo-expert/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter Optimization Tips</title>
		<link>https://rank1st.wordpress.com/2009/12/02/twitter-optimization-tips/</link>
					<comments>https://rank1st.wordpress.com/2009/12/02/twitter-optimization-tips/#respond</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Wed, 02 Dec 2009 06:24:07 +0000</pubDate>
				<category><![CDATA[Twitter Optimization]]></category>
		<category><![CDATA[Twitter Optimization Tips]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=49</guid>

					<description><![CDATA[Getting followers 1. Use an avatar image, a picture of a person, you is best 2. Only use a logo as avatar in case your brand is already established 3. Link your homepage in your profile, not LinkedIn or FriendFeed etc. 4. Let employees tweet as real people 5. Do not collect many more people [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>Getting followers</strong></p>
<p>1. Use an avatar image, a picture of a person, you is best<br />
2. Only use a logo as avatar in case your brand is already established<br />
3. Link your homepage in your profile, not LinkedIn or FriendFeed etc.<br />
4. Let employees tweet as real people<br />
5. Do not collect many more people you follow than you got followers<br />
6. Describe yourself in a factual not anecdotal way<br />
7. Tweet mostly in English if you’re from non-English speaking countries and target the global market<br />
8. At the beginning promote your Twitter presence so that you gather at least 5o followers<br />
9. Tweet at least a few times a week, do not lurk<br />
10. Do not pose as someone else, especially not a young attractive females, unless you don’t care</p>
<p><strong>Keeping followers</strong></p>
<p>1. If you’re on Twitter for business, limit the private tweets to a reasonable percentage<br />
2. Use direct message only for person to person conversation, not for broadcasting<br />
3. Link to yourself only occasionally<br />
4. Reply to other people, especially when addressed directly<br />
5. Do not tweet dozens of times per hour, that’s flooding<br />
6. Tweet manually not via automated scripts<br />
7. Post tweets directly to Twitter not via crossposting from elsewhere<br />
8. Vote on social sites for people you follow if you like their links but do not vote down if you dislike<br />
9. Be polite and use informal but not too casual langauge<br />
10. Keep conversations concise or otherwise move to another channel (private message, IM, email)</p>
<p><strong>Getting people to react</strong></p>
<p>1. Ask simple and direct questions<br />
2. Break news stories or be among the first to spread them<br />
3. Cover Twitter both on site and on your blog<br />
4. Mention and socialize with already popular and active Twitter users<br />
5. Tweet link to outstanding resources helpful to others<br />
6. Blog about other tweets you read and elaborate on them or collect a few<br />
7. Be outspoken about negative things that annoy you<br />
8. Create a tool geared towards the Twitter audience<br />
9. Be a human being, that is not only a business robot, mention private things others can relate to, like a cat<br />
10. Give away freebies, or at least report when others do</p>
<p><strong>Using the right tools</strong></p>
<p>1. A Twitter client for the device you mostly use to access Twitter<br />
2. A tool that helps you track the mentions of your name, brand or most important keywords<br />
3. A way to gain quick overview on what’s going on, on Twitter<br />
4. Some WordPress blog integration to connect your online presence to the Twitter community<br />
5. A favorite short URL service with analytics, proper redirects etc.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2009/12/02/twitter-optimization-tips/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Search Operators – Search Syntax for Google</title>
		<link>https://rank1st.wordpress.com/2009/02/23/google-search-operators-%e2%80%93-search-syntax-for-google/</link>
					<comments>https://rank1st.wordpress.com/2009/02/23/google-search-operators-%e2%80%93-search-syntax-for-google/#comments</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Mon, 23 Feb 2009 08:50:02 +0000</pubDate>
				<category><![CDATA[Google Search Operators]]></category>
		<category><![CDATA[search syntax]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=43</guid>

					<description><![CDATA[ Search Syntax for Google]]></description>
										<content:encoded><![CDATA[<p><strong>allinanchor: </strong><br />
If you start your query with allinanchor:, Google restricts results to pages containing all query terms you specify in the anchor text on links to the page. For example, [allinanchor: best museums sydney] will return only pages in which the anchor text on links to the pages contain the words “best,” “museums,” and “sydney.”</p>
<p><strong>allintext: </strong><br />
If you start your query with allintext:, Google restricts results to those containing all the query terms you specify in the text of the page. For example, [allintext: travel packing list] will return only pages in which the words “travel,” “packing,” and “list” appear in the text of the page. This functionality can also be obtained through the Advanced Web Search page, under Occurrences.</p>
<p><strong>allintitle: </strong><br />
If you start your query with allintitle:, Google restricts results to those containing all the query terms you specify in the title. For example, [allintitle: detect plagiarism] will return only documents that contain the words “detect” and “plagiarism” in the title. This functionality can also be obtained through the Advanced Web Search page, under Occurrences.</p>
<p><strong>allinurl: </strong><br />
If you start your query with allinurl:, Google restricts results to those containing all the query terms you specify in the URL. For example, [allinurl: google faq] will return only documents that contain the words “google” and “faq” in the URL, such as “www.google.com/help/faq.html”. This functionality can also be obtained through the Advanced Web Search page, under Occurrences.</p>
<p><strong>author: </strong><br />
If you include author: in your query, Google will restrict your Google Groups results to include newsgroup articles by the author you specify. The author can be a full or partial name or email address. For example, [children author:john author:doe] or [children author:doe@someaddress.com] return articles that contain the word “children” written by John Doe or doe@someaddress.com.</p>
<p><strong>cache: </strong><br />
The query cache:url will display Google’s cached version of a web page, instead of the current version of the page. For example, [cache:www.fomaxtech.com] will show Google’s cached version of the Electronic Frontier Foundation home page.<br />
Note: Do not put a space between cache: and the URL (web address).</p>
<p><strong>define: </strong><br />
If you start your query with define:, Google shows definitions from pages on the web for the term that follows. This advanced search operator is useful for finding definitions of words, phrases, and acronyms. For example, [define:blog] will show definitions for “Blog” (weB LOG).</p>
<p><strong>ext:</strong><br />
This is an undocumented alias for filetype:.</p>
<p><strong>filetype: </strong><br />
If you include filetype:suffix in your query, Google will restrict the results to pages whose names end in suffix. For example, [web page evaluation checklist filetype:pdf] will return Adobe Acrobat pdf files that match the terms “web,” “page,” “evaluation,” and “checklist.” You can restrict the results to pages whose names end with pdf and doc by using the OR operator, e.g. [email security filetype:pdf OR filetype:doc].</p>
<p><strong><br />
group:</strong><br />
If you include group: in your query, Google will restrict your Google Groups results to newsgroup articles from certain groups or subareas. For example, [sleep group:misc.kids.moderated] will return articles in the group misc.kids.moderated that contain the word “sleep” and [sleep group:misc.kids] will return articles in the subarea misc.kids that contain the word “sleep.”</p>
<p><strong>id: </strong><br />
This is an undocumented alias for info:.</p>
<p><strong>inanchor: </strong><br />
If you include inanchor: in your query, Google will restrict the results to pages containing the query terms you specify in the anchor text or links to the page. For example, [restaurants inanchor:gourmet] will return pages in which the anchor text on links to the pages contain the word “gourmet” and the page contains the word “restaurants.”</p>
<p><strong>info: </strong><br />
The query info:URL will present some information about the corresponding web page. For instance, [info:gothotel.com] will show information about the national hotel directory GotHotel.com home page.<br />
Note: There must be no space between the info: and the web page URL.<br />
This functionality can also be obtained by typing the web page URL directly into a Google search box.</p>
<p><strong>insubject: </strong><br />
If you include insubject: in your query, Google will restrict articles in Google Groups to those that contain the terms you specify in the subject. For example, [insubject:”falling asleep”] will return Google Group articles that contain the phrase “falling asleep” in the subject.<br />
Equivalent to intitle:.</p>
<p><strong>intext: </strong><br />
The query intext:term restricts results to documents containing term in the text. For instance, [Hamish Reid intext:pandemonia] will return documents that mention the word “pandemonia” in the text, and mention the names “Hamish” and “Reid” anywhere in the document (text or not).<br />
Note: There must be no space between the intext: and the following word.</p>
<p>Putting intext: in front of every word in your query is equivalent to putting allintext: at the front of your query, e.g., [intext:handsome intext:poets] is the same as [allintext: handsome poets].</p>
<p><strong>intitle: </strong><br />
The query intitle:term restricts results to documents containing term in the title. For instance, [flu shot intitle:help] will return documents that mention the word “help” in their titles, and mention the words “flu” and “shot” anywhere in the document (title or not).<br />
Note: There must be no space between the intitle: and the following word.<br />
Putting intitle: in front of every word in your query is equivalent to putting allintitle: at the front of your query, e.g., [intitle:google intitle:search] is the same as [allintitle: google search].</p>
<p><strong>inurl: </strong><br />
If you include inurl: in your query, Google will restrict the results to documents containing that word in the URL. For instance, [inurl:print site:www.googleguide.com ] searches for pages on Google Guide in which the URL contains the word “print.” It finds pdf files that are in the directory or folder named “print” on the Google Guide website. The query [ inurl:healthy eating ] will return documents that mention the words “healthy” in their URL, and mention the word “eating” anywhere in the document.<br />
Note: There must be no space between the inurl: and the following word.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2009/02/23/google-search-operators-%e2%80%93-search-syntax-for-google/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Sitelinks</title>
		<link>https://rank1st.wordpress.com/2009/02/04/sitelinks/</link>
					<comments>https://rank1st.wordpress.com/2009/02/04/sitelinks/#comments</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Wed, 04 Feb 2009 07:07:00 +0000</pubDate>
				<category><![CDATA[Sitelinks]]></category>
		<category><![CDATA[google back links]]></category>
		<guid isPermaLink="false">http://https://rank1st.wordpress.com/?p=28</guid>

					<description><![CDATA[Sitelinks are additional links Google sometimes generates from site contents in order to help users navigate the site.Google generates these sitelinks periodically from the site's contents.
]]></description>
										<content:encoded><![CDATA[<p>Sitelinks are additional links Google sometimes generates from site contents in order to help users navigate the site. Google generates these sitelinks periodically from the site&#8217;s contents.</p>
<p>Over the years, search engines (especially Google) have become more particular about the types of links that you get to your Web site; rightfully so. This week, we&#8217;ll focus on several ways to search for quality links.</p>
<p>First, make sure you have some links from the more &#8220;trusted&#8221; Web directories: Yahoo Directory; Business.com, and Best of the Web. Ideally, you want a link from all three, but a link from at least one is OK. I also recommend submitting your site to DMOZ because it&#8217;s free and worth the two minutes it takes to find your category and make a one-time submission. Just don&#8217;t hold your breath waiting for the listing to appear.</p>
<p>Depending on your industry, certain &#8220;trade journals&#8221; or directories may be popular sites. These sites usually rank well in the search results for many of the generic keywords that describe your industry. Links from the &#8220;industry&#8221; sites will also help your site because the link value will be passed on, and for overall brand and Web site visibility. Just make sure the site is trusted.</p>
<p>How do you determine if a site is trusted? Check Google&#8217;s search results to see if the site has sitelinks. Sitelinks are the links (usually between four and eight) which Google shows below the first search result for a query, usually when you search for a company name or a Web site name. These link to internal pages.</p>
<div data-shortcode="caption" id="attachment_36" style="width: 160px" class="wp-caption alignnone"><img aria-describedby="caption-attachment-36" data-attachment-id="36" data-permalink="https://rank1st.wordpress.com/2009/02/04/sitelinks/siteink/#main" data-orig-file="https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg" data-orig-size="223,162" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="siteink" data-image-description="" data-image-caption="&lt;p&gt;siteink&lt;/p&gt;
" data-medium-file="https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg?w=223" data-large-file="https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg?w=223" class="size-thumbnail wp-image-36" title="siteink" src="https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg?w=150&#038;h=108" alt="siteink"   srcset="https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg?w=128 128w, https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg?w=150 150w, https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg 223w" sizes="(max-width: 128px) 100vw, 128px" /><p id="caption-attachment-36" class="wp-caption-text">siteink</p></div>
<p>Take, for example, <a href="http://www.dmoz.org/">DMOZ</a>. A Google search for &#8220;dmoz&#8221; shows this is a &#8220;trusted site&#8221; because sitelinks are shown below the domz search result. If a site has sitelinks and is on-topic to your Web site, then this is a place you want a link from.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2009/02/04/sitelinks/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>

		<media:content url="https://rank1st.wordpress.com/wp-content/uploads/2009/02/siteink.jpg?w=128" medium="image">
			<media:title type="html">siteink</media:title>
		</media:content>
	</item>
		<item>
		<title>Social Bookmarking Website List</title>
		<link>https://rank1st.wordpress.com/2008/09/30/social-bookmarking-website-list/</link>
					<comments>https://rank1st.wordpress.com/2008/09/30/social-bookmarking-website-list/#comments</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Tue, 30 Sep 2008 09:40:46 +0000</pubDate>
				<category><![CDATA[Social Bookmarking Websites]]></category>
		<category><![CDATA[social bookmarking]]></category>
		<category><![CDATA[social bookmarking website]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=18</guid>

					<description><![CDATA[Site Alexa Rank PR 60094 6 BlogMarks.net Social Bookmarking with thumbnails. Atom enabled. 438516 3 Blauer Bote Bookmarks Bookmarak Manager in German and English 9781 7 LQ Bookmarks Social Bookmarking, tagging and annotating all things Linux and Open Source. 295993 6 de.lirio.us Social Bookmarking, Tagging, Blogging &#38; Notes. Mmmmmm, Notes. 2180 8 del.icio.us Currently the [&#8230;]]]></description>
										<content:encoded><![CDATA[<table border="1" cellspacing="0" cellpadding="0" width="100%" bgcolor="#006699">
<tbody>
<tr>
<td width="65%"><strong><span style="font-size:small;font-family:Arial,Helvetica,sans-serif;color:#ffffff;">Site</span></strong></td>
<td width="23%">
<div><span style="font-size:small;font-family:Arial,Helvetica,sans-serif;color:#ffffff;"><strong>Alexa          Rank</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:small;font-family:Arial,Helvetica,sans-serif;color:#ffffff;"><strong>PR</strong></span></div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.blogmarks.net/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/BlogMarks.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>60094</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.blogmarks.net/" target="_blank">BlogMarks.net</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social Bookmarking with thumbnails. Atom enabled.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://bookmarks.blauerbote.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/BlauerBote.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>438516</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>3</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://bookmarks.blauerbote.com/" target="_blank">Blauer Bote Bookmarks</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Bookmarak Manager in German and English</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://bookmarks.linuxquestions.org/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/bookmarkslinuxquestions.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>9781</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>7</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://bookmarks.linuxquestions.org/" target="_blank">LQ Bookmarks</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social Bookmarking, tagging and annotating all things Linux and Open Source.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://de.lirio.us/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/delirious.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>295993</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://de.lirio.us/" target="_blank">de.lirio.us</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social Bookmarking, Tagging, Blogging &amp; Notes. Mmmmmm, Notes.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://del.icio.us/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/delicious.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>2180</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>8</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://del.icio.us/" target="_blank">del.icio.us</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Currently the most used software application.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.digg.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/digg.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>7</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.digg.com/" target="_blank">digg</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Digg is a technology news website that combines social bookmarking, blogging, RSS, and non-hierarchical editorial control. With digg, users submit stories for review, but rather than allow an editor to decide which stories go on the homepage, the users do.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://feedmarker.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/feedmarker.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>2378882</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://feedmarker.com/" target="_blank">feedmarker</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">A free, Web based RSS/ATOM aggregator and bookmarks manager.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>672284</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>1</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://friendsite.com/" target="_blank">FriendSite</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Get free storage and share your photos &amp; videos, get your own url and customize your page, create free evites and invitations, add friends, message people, create discussion forums and groups, blog, share and store your bookmarks &amp; much more&#8230; </span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://frassle.rura.org/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/frassle.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>445264</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://frassle.rura.org/" target="_blank">frassle</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Frassle helps you read and publish weblogs, track bookmarks, and find relevant content organized your way.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>1928721</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.fuzzfizz.com/" target="_blank">FuzzFizz</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">FuzzFizz is a brand new social bookmarking site, where users vote for the most interesting and important news stories. </span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.jumptags.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/Jumptags.jpg" border="0" alt="Jumptags" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>125861</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.jumptags.com/" target="_blank">Jumptags</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Jumptags.com is a revolutionary Web 2.0 social bookmarking web service for collecting, storing, sharing and distributing web bookmarks, notes, RSS feeds, contacts, and much more. Based on AJAX and other next generation web development techniques, Jumptags.com offers the easiest, fastest, most intuitive and productive way of maintaining and collaborating bookmarks and other internet resources online.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://linkroll.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/LinkRoll.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>833758</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://linkroll.com/" target="_blank">linkroll</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Linkroll is a free link blogging service. At a personal level you can bookmark, categorize and comment on all the great web pages/links you find. All your bookmarks are then sortable and searchable by category and date. All bookmarks are also accessible, by category and/or user, in the form of RSS feed (for your news aggregator), or JavaScript (for syndication on your own web site)</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://loom.delymyth.net/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/loom.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>60011</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://loom.delymyth.net/" target="_blank">loom</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Collaborative bookmarking application written in PHP.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://myprogs.net/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/MyProgs.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>181086</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://myprogs.net/" target="_blank">MyProgs</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking for programs you use.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://myweb2.search.yahoo.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/YahooSearchMyWeb20.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>1</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>7</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://myweb2.search.yahoo.com/" target="_blank">Yahoo Search myweb2 beta</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">A social search engine integrating social bookmarking with search.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.newnooze.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/NewNooze.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.newnooze.com/" target="_blank">NEWNOOZE</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social Bookmarking on just about every subject. A Digg.com clone site. Beta Stage.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://openbm.de/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/openBM.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>1328526</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://openbm.de/" target="_blank">openBM</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">It&#8217;s just linking cool sites together. openBM is a little tool for everybody. openBM just keep&#8217;s your bookmarks and provides them for other people on the web.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://reader2.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/Reader2.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>122873</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://reader2.com/" target="_blank">Reader²</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Share the list of books you read or recommend, find new books by tags/authors. Multilanguage.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://reddit.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/reddit.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>7</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://reddit.com/" target="_blank">reddit</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking where your votes affect your karma points.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://scuttle.org/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/scuttle.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://scuttle.org/" target="_blank">scuttle.org </a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">amongst others are based on the scuttle software.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://sourceforge.net/projects/scuttle/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/sourceforge_net.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://sourceforge.net/projects/scuttle/" target="_blank">Scuttle</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Another open source clone of del.icio.us.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://unalog.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/unalog.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://unalog.com/" target="_blank">unalog</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Open source bookmarking software written in the Python programming.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.aworldofhelp.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/aworldofhelp.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>2308711</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>3</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.aworldofhelp.com/" target="_blank">aworldofhelp</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Users submit and rate links in numerous categories. The highest rated make the front page.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.beanrocket.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/beanrocket.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>1150083</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.beanrocket.com/" target="_blank">beanrocket</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Beanrocket.com is a community and a news reader.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.blinklist.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/blinklist.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>63378</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.blinklist.com/" target="_blank">BlinkList</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking with slick interface and new ways for organizing tags.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.citeulike.org/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/citeulike.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>98113</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>7</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.citeulike.org/" target="_blank">CiteULike</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking for academic papers.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.commontimes.org/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/commontimes.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>162993</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.commontimes.org/" target="_blank">commontimes</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Provides community-based media distribution services and solutions along with BitTorrent hosting and consulting for individuals and organizations of all sizes.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.connectedy.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/connectedy.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>699250</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.connectedy.com/" target="_blank">Connectedy</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">This service allows the establishment of pseudonymous online link libraries. Users may impose arbitrary categorical hierarchies on their links and choose which categories and links to make public and which ones to keep private. The Connectedy site has par SEO properties.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.connotea.org/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/connotea.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>7</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.connotea.org/" target="_blank">Connotea</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking for scientists.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.dinnerbuzz.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/dinnerbuzz.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.dinnerbuzz.com/" target="_blank">dinnerbuzz</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Dinnerbuzz is a social guide to restaurants, bars, and coffee shops. It&#8217;s designed to make it easier for you to find a place for dinner or drinks anywhere in the world.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.erational.org/software/wiklink/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/wiklink.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.erational.org/software/wiklink/" target="_blank">Wiklink</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Tools to synchronize bookmarks with your browser.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.feedmelinks.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/feedmelinks.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.feedmelinks.com/" target="_blank">FeedMeLinks</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social Bookmarking since 2002.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.flipskipper.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/flipskipper.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>3</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.flipskipper.com/" target="_blank">FlipSkipper</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">social bookmarking manager that allows users to pull concurrent searches from Yahoo!, Google News, and del.icio.us when surfing.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.furl.net/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/furl.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>8</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.furl.net/" target="_blank">Furl</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Similar to del.icio.us: stores copies of the pages saved, automates finding users with similar interests, archives can be exported in MPLA or APA citation format.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.givealink.org/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/givealink.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.givealink.org/" target="_blank">GiveALink</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Donate your bookmarks for academic research.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.indiagram.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/indiagram.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.indiagram.com/" target="_blank">IndiaGram</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Allows social bookmarking. Aim is to develop a community that shares information about websites on diverse topics.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.jots.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/jots.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.jots.com/" target="_blank">jots</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Jots is a collaborative bookmarking system that allows you to Store, Share and Discover relevant links. Store your own links and choose whether to share them with the world, with a select group of people or just for yourself to use. Discover new links based on specific users or topics of interest.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.leze.de/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/Leze_De.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.leze.de/" target="_blank">leze.de and</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">German Internet Bookmarking Service</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.librarything.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/librarything.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.librarything.com/" target="_blank">LibraryThing</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Deli.cio.us for books. Cataloging based on some 30+ libraries using the Z39.50 protocol.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.linkblog.com.br/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/linkBlog.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.linkblog.com.br/" target="_blank">linkblog</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Portuguese</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.linkfilter.net/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/linkfilter.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.linkfilter.net/" target="_blank">linkfilter</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">linkfilter.net is just what the name implies, a link filter. All links are posted and moderated by users. Links can be ranked on several levels: clicks, votes, age, or a combination of all three called points.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.lookmarks.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/lookmarks.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.lookmarks.com/" target="_blank">Lookmarks (beta)</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Search and share your bookmarks</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.memestreams.net/topics/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/memestreams.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.memestreams.net/topics/" target="_blank">memestreams</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">&#8220;Don&#8217;t hate the media, become the media!&#8221; &#8211; Biafra</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.netvouz.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/netvouz.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.netvouz.com/" target="_blank">Netvouz</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking using either categories or tags. Share your bookmarks online or keep them private. RSS feeds for all bookmarks. Add2Netvouz button for easily bookmarking new sites, import/export, automatic link validation and lots of other features.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.networkmenus.co.uk/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/network.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.networkmenus.co.uk/" target="_blank">Network Menus</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social Bookmarking (or /wiki/Collaborative_Bookmarking title=Collaborative Bookmarking Collaborative Bookmarking) within a web browser toolbar.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.oyax.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/oyax.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.oyax.com/" target="_blank">O Y A X</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">A fast and quick social categorized bookmarking service with groups.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.rawsugar.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/rawsugar.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.rawsugar.com/" target="_blank">RawSugar</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Socially enhanced web search based on hierarchal tagging of bookmarks and favorites. Include s multi-word categories, mechanism to define and rename categories, and hierarchy.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.shadows.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/shadows.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.shadows.com/" target="_blank">Shadows</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking with tags, comments and ratings. Shadows&#8217; toolbar puts users one click away from a discussion forum for any page on the web.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.simpy.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/simply.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.simpy.com/" target="_blank">Simpy</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social bookmarking with tagging and full-text searching.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.sitetagger.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/sitetagger.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.sitetagger.com/" target="_blank">sitetagger</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">SiteTagger.com is a bookmark/favorite organizer. You can bookmark websites you find on the internet via a simple button/favlet/bookmarklet that you can add to your browser link bar. This button makes it as simple as a click to bookmark a website page that you are visiting. The true power comes from the tags.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.spurl.net/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/spurl.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.spurl.net/" target="_blank">Spurl</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Similar to del.icio.us: stores copies of the pages saved.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.stumbleupon.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/stumbleupon.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>7</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.stumbleupon.com/" target="_blank">StumbleUpon</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Bookmarking, social networking, friends-network, random browsing within interest-groups.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.sync2it.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/sync2it.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.sync2it.com/" target="_blank">Sync2It&#8217;s BookmarkSync</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Effortless social bookmarking, millions of hand-picked sites, real-time RSS feeds, public &amp; private collections. Features automatic clustering technology.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.taghop.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/taghop.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>4</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.taghop.com/" target="_blank">taghop</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Taghop is a collaborative thoughtblog. A thoughtblog is a combination of some of the existing ideas behind blogs, with some ideas of its own. It is a web site, search engine, wiki, blogging system, social network and community site all rolled into one &#8211; or at least the best parts of those! They have been inspired by the great work from sites such as Google, Flickr, del.icio.us, 43things, etc</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p><!--www.Tagza.com--></p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.tagza.com/" target="_blank">&lt;!&#8211;<img src="textnotes.jpg" border="0" alt="Social_Bookmarking" />&#8211;&gt;</a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>979342</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.tagza.com/" target="_blank">Tagza.com</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">A very young Social Book marking web site mostly being used by Indian and Pakistani web masters.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.textnotes.de/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/textnotes.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>3</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.textnotes.de/" target="_blank">Textnotes.de</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social notes manager. Easy integration of references to books, news and articles.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.thethingsiwant.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/thethingsIwant.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.thethingsiwant.com/" target="_blank">TheThingsIWant</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Universal wishlist service with Social Bookmarking and RSS feeds.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.urlex.info/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/URLex.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>3</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.urlex.info/" target="_blank">URLex</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Personal/Friends/Community bookmarking and rss feeds.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.wazima.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/wazima.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.wazima.com/" target="_blank">Wazima</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Coupons clipped by robots. Wazima scours the web and shows you the deals you are most interested in.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.web-feeds.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/webfeeds.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>5</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.web-feeds.com/" target="_blank">Web Feeds</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Web Feeds is a social bookmark site with a difference, users moderate and decide which items make it to the home page.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.wists.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/wists.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.wists.com/" target="_blank">Wists</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Visual bookmarks, wishlists, photoblogs.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.wurldbook.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/wurldbook.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>6</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.wurldbook.com/" target="_blank">wURLdBook</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Share webreferences and rss feeds with others and more.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="70%"><a href="http://www.yoono.com/" target="_blank"><img src="https://i0.wp.com/www.blogmarketingtactics.com/social-bookmarking/yoono.jpg" border="0" alt="Social_Bookmarking" /></a></td>
<td width="23%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
<td width="12%">
<div><span style="font-size:x-small;font-family:Arial,Helvetica,sans-serif;color:#0000ff;"><strong>0</strong></span></div>
</td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><a rel="nofollow" href="http://www.yoono.com/" target="_blank">Yoono</a> </span></td>
<td></td>
<td></td>
</tr>
<tr>
<td><span style="font-family:Arial,Helvetica,sans-serif;color:#000099;"><span style="font-size:x-small;color:#000000;">Social Bookmarking based on browser bookmarks (no tags needed), includes a search engine, an RSS Reader, web monitoring and sharing functions. Windows application and firefox extension.</span></span></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2008/09/30/social-bookmarking-website-list/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/BlogMarks.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/BlauerBote.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/bookmarkslinuxquestions.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/delirious.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/delicious.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/digg.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/feedmarker.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/frassle.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/Jumptags.jpg" medium="image">
			<media:title type="html">Jumptags</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/LinkRoll.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/loom.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/MyProgs.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/YahooSearchMyWeb20.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/NewNooze.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/openBM.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/Reader2.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/reddit.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/scuttle.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/sourceforge_net.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/unalog.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/aworldofhelp.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/beanrocket.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/blinklist.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/citeulike.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/commontimes.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/connectedy.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/connotea.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/dinnerbuzz.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/wiklink.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/feedmelinks.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/flipskipper.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/furl.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/givealink.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/indiagram.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/jots.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/Leze_De.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/librarything.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/linkBlog.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/linkfilter.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/lookmarks.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/memestreams.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/netvouz.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/network.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/oyax.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/rawsugar.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/shadows.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/simply.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/sitetagger.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/spurl.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/stumbleupon.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/sync2it.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/taghop.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/textnotes.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/thethingsIwant.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/URLex.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/wazima.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/webfeeds.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/wists.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/wurldbook.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>

		<media:content url="http://www.blogmarketingtactics.com/social-bookmarking/yoono.jpg" medium="image">
			<media:title type="html">Social_Bookmarking</media:title>
		</media:content>
	</item>
		<item>
		<title>RSS Feed – Really simple syndication</title>
		<link>https://rank1st.wordpress.com/2008/07/29/rss-feed-%e2%80%93-really-simple-syndication/</link>
					<comments>https://rank1st.wordpress.com/2008/07/29/rss-feed-%e2%80%93-really-simple-syndication/#respond</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Tue, 29 Jul 2008 12:00:57 +0000</pubDate>
				<category><![CDATA[RSS Feed]]></category>
		<category><![CDATA[rss feed tips]]></category>
		<category><![CDATA[rss file]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=14</guid>

					<description><![CDATA[RSS – Really simple syndication RSS is a data format used for providing content updation to users in net. It is used in blogs, news portals, and websites to provide summaries or full descriptions of the new content. In this way the user will not be disconnected from the latest changes and happenings. RSS makes [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>RSS – Really simple syndication</p>
<p style="margin-bottom:0;text-align:justify;">RSS is a data format used for providing content updation to users in net. It is used in blogs, news portals, and websites to provide summaries or full descriptions of the new content. In this way the user will not be disconnected from the latest changes and happenings. RSS makes it possible for people to keep up with web sites in an automated manner that can be piped into special programs or filtered displays. Its different from book marking in which the user has only a link about a particular webpage or site and to check whether that website has updated its content or not the user has to go that site and check it all by himself. It will be a tiresome job if your list contains a number of websites or if it’s a big site with lots of content. Subscribing to the RSS feeds is a viable option in this regard as the updated contents from all the sites specified will be sent to user. It can be in the form of summary or a full text depending on the site user has the subscription.</p>
<p style="margin-bottom:0;text-align:justify;">Subscribing to RSS doesn’t need submission of E-mail ID, in this way security concerns won’t be an issue to subscribing to RSS feeds.</p>
<p style="margin-bottom:0;text-align:justify;">The user subscribes to a feed by entering the feed&#8217;s link into the reader or by clicking an RSS icon in a browser that initiates the subscription process. The RSS reader checks the user&#8217;s subscribed feeds regularly for new content, downloads any updates that it finds, and provides a user interface to monitor and read the feeds. The format used in web feed is XML.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2008/07/29/rss-feed-%e2%80%93-really-simple-syndication/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
		<item>
		<title>Social Media Marketing/Optimization</title>
		<link>https://rank1st.wordpress.com/2008/06/17/social-media-marketingoptimization/</link>
					<comments>https://rank1st.wordpress.com/2008/06/17/social-media-marketingoptimization/#comments</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Tue, 17 Jun 2008 07:02:46 +0000</pubDate>
				<category><![CDATA[Social Media Optimization]]></category>
		<category><![CDATA[smm]]></category>
		<category><![CDATA[smo]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=11</guid>

					<description><![CDATA[Social media marketing, while its concept and fundamentals have been around for a while, has changed remarkably in the past six months. There was a time when a social media link building campaign was very easy. The big search engines valued domains like Squidoo and MySpace to the extent that your profiles could easily rank [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Social media marketing, while its concept and fundamentals have been around for a while, has changed remarkably in the past six months. There was a time when a social media link building campaign was very easy. The big search engines valued domains like Squidoo and MySpace to the extent that your profiles could easily rank for targeted keywords. It should come as no surprise that this is no longer the case.</p>
<p>Using social media as an effective link building tactic is still possible but it is no longer as easy as creating profiles, submitting content to social news sites and dominating search engine results pages. It is both fortunate and unfortunate that Google has severely toughened up its standards for sites like MySpace. For marketers, it means a lot more work. For users, it means far less noise and spam in their search results.</p>
<p>Social media optimization is now a relatively delicate process. Traditional link building campaigns often involve blatantly asking for links, or simply buying them. In contrast, social media optimization is only effective if a marketer can convince others to link to material, not by asking, but by creating fantastic content. Most people’s accounts and profiles on social media websites are intrinsically attached to their offline self. Unlike people who run a website that includes a designated “Links” page, social media users are not likely to add a company’s profile as a “friend” or vote for a company’s content just because they’re asked to. The majority of people want their user history on sites like Digg and Reddit, and their friend lists on MySpace and Facebook to reflect something about their personalities. The less socially appealing and more exploited your industry is offline, the harder it will be for you to take advantage of online communities.</p>
<p>The landscape of social media is constantly changing. There is no profile, site or community whose content does not change hourly or, at the most, daily. “Traditional” social media link building, in most respects, was solely spam. Marketers realized that they could get quick, easy non-nofollowed links out of domains whose authority had already been established. There was little need to build a community and, in actual fact, a company who created a spam profile for the sake of linking to their actual websites would not have wanted to attract a great deal of traffic to the profile itself. The primary goal was to have search engine spiders see the profile and the links, add the weight of the links to the authority of the company’s main website and improve the main website’s ranking.</p>
<p>Search engines no longer lend any value whatsoever to links from areas like MySpace profiles. This is not to say, however, that MySpace and its peers are completely useless now; it just means that optimizing with these sites is no longer the simple process it was a few years ago. Search engines and social media website owners alike are aware that the point of social media is not to simply give marketers an easy collection of links. Marketers must now be prepared to contribute to the communities that can send them traffic.</p>
<p style="margin-bottom:12pt;">This article documents the procedures and practices that should be followed in order to enjoy the benefits of today’s largest social media entities. With the detailed instructions of how marketers can best optimize these sites, we have also included the quickest, easiest ways to create accounts and add links to other sites. We provide this not because we advocate creating profiles, adding links and not following up with the community in any way, but as a time-saving guide when one is faced with creating multiple profiles across different sites.</p>
<h2><a name="genrules"></a><span style="font-size:12pt;color:#993366;">Some General Rules</span><span style="font-size:12pt;"> </span></h2>
<ol type="1">
<li class="MsoNormal">When dealing with social      media, you may have to leave your political or moral beliefs behind. For      some reason, a high percentage of users at the most popular social media      outlets are of a liberal or libertarian persuasion and they tend to join      groups and vote on stories accordingly.</li>
<li class="MsoNormal">In general, people are a lot      more wary about social spam now than they were three years ago. Even      legitimate yet misguided marketing efforts can be taken as spam by users.</li>
<li class="MsoNormal">The widespread adoption of      the nofollow tag, which tells search engines not to put any value in      tagged links, means that marketers need to appeal to communities as a      whole instead of simply taking advantage of sites’ domain strength.</li>
<li class="MsoNormal">Buying votes to gain      popularity for submissions on social media websites is even more frowned      upon than is buying links in order to rank well in search engines.      However, search marketers and webmasters ask their friends, acquaintances      and business associates for links all the time. They ask total strangers      for links via link submission forms and unsolicited emails. Asking for      votes in social media is fine – people have the right to decide your      content is not to their liking and not to vote for it. However, when      someone has bought a link or a vote, there is no social discretion. Money      should never change hands in the social media world.</li>
<li class="MsoNormal">Every community is different,      even if the same people use a number of different communities. People do      not behave the same way at LinkedIn as they do at MySpace; neither do they      look for the same content at Del.icio.us as they do whilst browsing on      StumbleUpon. Every social media effort has to take the intended audience      into account.</li>
<li class="MsoNormal">Even if you have the most      compelling content on the Internet, an ugly website, boring Blogspot      layout or even a questionable color-scheme can hinder your success with      social media. Search engines mightn’t be able to see an ugly background or      a slow-loading image, but people can, and they take into account factors      like these when deciding whether or not you get their vote.</li>
<li class="MsoNormal">People can be very mean.      Social media is a popularity contest of sorts and people love to bring      down things that are popular. When your content receives a lot of      attention on a prominent website, there will be those who add nasty      comments. Consider those comments as part of your success, because rarely      do users bother commenting on content that is receiving no attention.</li>
<li class="MsoNormal">Timing can be important. When      submitting content to sites like Reddit and Digg, it is not a good idea to      do so when it is the middle of the night in the United States. The U.S. is the main source of traffic for      sites like this and you will generally notice the best results if your      content is gaining votes during the United       States’ work day and Europe’s      evening.
<p>Although good content can become popular at any time, a good rule to      follow is that intellectual submissions that require a user to think are      better off being posted on Monday through Wednesday night or Thursday-day.      Less-thought provoking submissions can be posted on Thursday evening,      Friday and during the weekend. We once recorded a phenomenal link bait      success over a Friday-Saturday time period, but the post was just an      interesting picture. Few users are in the mood for political or economic      discussion at three in the afternoon on a Friday.</li>
</ol>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2008/06/17/social-media-marketingoptimization/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
		<item>
		<title>Google PageRank and it&#8217;s important</title>
		<link>https://rank1st.wordpress.com/2008/05/13/google-pagerank-and-its-important/</link>
					<comments>https://rank1st.wordpress.com/2008/05/13/google-pagerank-and-its-important/#comments</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Tue, 13 May 2008 06:35:51 +0000</pubDate>
				<category><![CDATA[Page Rank]]></category>
		<category><![CDATA[google]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=8</guid>

					<description><![CDATA[Page Rank is a numeric value given by Google to web pages which represents the importance of web pages on the web. There is a green horizontal bar in Google Toolbar which is known as Page Rank checker. Page Rank value varies from 1 to 10 and the more Page Rank a page has the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Page Rank is a numeric value given by Google to web pages which represents the importance of web pages on the web. There is a green horizontal bar in Google Toolbar which is known as Page Rank checker. Page Rank value varies from 1 to 10 and the more Page Rank a page has the better trust of visitors on the site. Though some people claim that it’s ridiculous to believe in PR (Page Rank), now it has become a factor to judge the site’s quality and having faith in its brand. So there is no way but to acknowledge the importance of Google PR. Inbound links influence the PR in a big way. When a page gives link to other page, this is generally considered as casting of vote for that page. The more the votes cast for a page, the importance of that page increases. Only the quantity of inbound links does not determine the importance of page, it still depends on the fact that how important those pages are, which cast vote for that page. In other words I can say if a pages gets links from quality pages (obviously PR of those pages are high), then it would have great influence in increment of the PR of that page. So from here we can conclude that for better Page Rank of a page this requires quantitative as well as qualitative inbound links. Page Rank is Google’s way of judging page’s importance. Page’s ranking gets climbing in search results as Page Rank keeps improving.</p>
<h2>How to calculate PR of a page?</h2>
<p>There is an equation to calculate PR of a page i.e. <strong>PR(A) = (1-d) + d(PR(t1)/C(t1) + &#8230; + PR(tn)/C(tn))</strong>. Though the equation was published long time back when concept of Page Rank introduced, this still works well. We are not aware what exactly Google is doing while assigning PR to different pages. So we can use this equation to have some sort of idea for calculating Page Rank of our required sites.</p>
<p>Let’s have a look on that equation. Page ‘A’ gets links from page t1…tn. C is the total nos. of outbound links of each page (t1, t2 &#8230; tn) that links to page A and d is the damping factor which is equal to 0.85. So the equation can be rewritten as <strong>PR(A) = 0.15 + 0.85(PR(t1)/C(t1) + &#8230; + PR(tn)/C(tn))</strong>.</p>
<p>This <a title="Google Page Rank Checker" href="http://www.indianseoexpert.com/seo-tools/">Google PR Checker Tool</a> enables you to calculate the PR of buck of URLs</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2008/05/13/google-pagerank-and-its-important/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
		<item>
		<title>Press Release Tips</title>
		<link>https://rank1st.wordpress.com/2008/03/07/press-release-tips/</link>
					<comments>https://rank1st.wordpress.com/2008/03/07/press-release-tips/#respond</comments>
		
		<dc:creator><![CDATA[rank1st]]></dc:creator>
		<pubDate>Fri, 07 Mar 2008 11:29:58 +0000</pubDate>
				<category><![CDATA[Press Release]]></category>
		<category><![CDATA[pr]]></category>
		<category><![CDATA[press release tips]]></category>
		<guid isPermaLink="false">http://rank1st.wordpress.com/?p=7</guid>

					<description><![CDATA[Press Release Tips 1. Make sure the information is newsworthy. 2. Tell the audience that the information is intended for them and why they should continue to read it. 3. Start with a brief description of the news, then distinguish who announced it, and not the other way around. 4. Ask yourself, &#8220;How are people [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><b>Press Release Tips</b></p>
<p>1.    Make sure the information is newsworthy.<br />
2.    Tell the audience that the information is intended for them and why they should continue to read it.<br />
3.    Start with a brief description of the news, then distinguish who announced it, and not the other way around.<br />
4.    Ask yourself, &#8220;How are people going to relate to this and will they be able to connect?&#8221;<br />
5.    Make sure the first 10 words of your release are effective, as they are the most important.<br />
6.    Avoid excessive use of adjectives and fancy language.<br />
7.    Deal with the facts.<br />
8.    Provide as much Contact information as possible: Individual to Contact, address, phone, fax, email, Web site address.<br />
9.    Make sure you wait until you have something with enough substance to issue a release.<br />
10.    Make it as easy as possible for media representatives to do their jobs.</p>
<p><b>Where do I submit press releases?</b></p>
<p>There are many services that will accept press releases, but most of them will charge a fee to distribute your news item to journalists and news editors. A few of the better known services are PRWeb Direct , PRNewsWire and MarketWire.<br />
PRWeb Direct , which provides excellent coverage at a very low price. Features include:</p>
<p>•    Distribution on the same day<br />
•    PR Web and eMediawire Distribution<br />
•    Attach graphics and multimedia<br />
•    RSS/XML/OPLM/NewsML inclusion<br />
•    Yahoo search marketing inclusion<br />
•    Google news inclusion<br />
•    Yahoo news inclusion<br />
•    MSN news inclusion<br />
•    Quick statistics<br />
•    Up to 10 industry targets<br />
•    Free editorial review</p>
<p>PRWeb Direct  also offers valuable tips on their site to help you with press release development and submission. The company is one of the oldest online press release distribution agencies around, with 100,000 contacts, industry analysts and freelance journalists in their databases. It&#8217;s a great service well worth checking out.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rank1st.wordpress.com/2008/03/07/press-release-tips/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://1.gravatar.com/avatar/de1f19d51c11ed92244562a1b59a89b968ae991b4f4c776bb502845b39647def?s=96&#38;d=identicon" medium="image">
			<media:title type="html">rank1st</media:title>
		</media:content>
	</item>
	</channel>
</rss>
