<?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>Creative GoldenTwine Blog</title>
	<atom:link href="http://goldtwine.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://goldtwine.wordpress.com</link>
	<description>Creative blog of GoldenTwine Informatics</description>
	<lastBuildDate>Sat, 16 Jan 2010 18:00:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='goldtwine.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/4bb76fc1fafba2f35edbf7c7c0a55652?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Creative GoldenTwine Blog</title>
		<link>http://goldtwine.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://goldtwine.wordpress.com/osd.xml" title="Creative GoldenTwine Blog" />
	<atom:link rel='hub' href='http://goldtwine.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Creative CSS &#8211; An Introduction</title>
		<link>http://goldtwine.wordpress.com/2009/12/20/creative-css-an-introduction/</link>
		<comments>http://goldtwine.wordpress.com/2009/12/20/creative-css-an-introduction/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 19:11:42 +0000</pubDate>
		<dc:creator>Subrato Paul</dc:creator>
				<category><![CDATA[Creative CSS]]></category>
		<category><![CDATA[CSS Snippets]]></category>
		<category><![CDATA[CSS Tips, Tricks and Techniques]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[designing with CSS]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[techniques]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://goldtwine.wordpress.com/?p=198</guid>
		<description><![CDATA[This article is a small introduction to two new series about Cascading Style Sheets (CSS) -  CSS Tips, Tricks and Techniques and  CSS Snippets. The aim of this introductory article is to familiarize those who are totally new to CSS with some of the basics. The series to be published on our blog would enrich and supplement your knowledge of CSS.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=198&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0183ac;">Designing with CSS &#8211; An Introduction</h2>
<p>This article is a small introduction to two new series about <em>Cascading Style Sheets</em> (CSS)</p>
<ul>
<li><strong>CSS Tips, Tricks and Techniques</strong></li>
<li><strong>CSS Snippets</strong></li>
</ul>
<p>With improvements in browsers&#8217; compliance with W3C standards there is a widespread acceptance and usage of XHTML/XML along with Cascading Style Sheets (CSS) to style web document elements and objects.</p>
<p>The aim of this introductory article is to familiarize those who are totally new to CSS with some of the basics. To gain the most from these two series you are expected to be a web designer with elementary knowledge of XHTML and CSS. The idea is to provide web designers with the ability to create standards compliant, accessible web sites using XHTML and CSS. The CSS <strong>tips, tricks, techniques</strong> and <strong>snippets</strong> to be published on our blog would enrich and supplement your knowledge of CSS.</p>
<p><strong>Purpose of CSS</strong><br />The purpose of CSS is to provide web developers with a standard way to define, apply, and manage style characteristics, such as font, size, colour, and position, to the elements of XHTML documents. CSS provides these capabilities through a technical model based on parent/child hierarchy of the web document, the separation of style from content, and World Wide Web Consortium (W3C) created and documented set of standards.</p>
<p><strong>Using Cascading Style Sheet</strong><br />CSS information can be applied in different ways. CSS style information can be either attached as a separate document or embedded in the XHTML document. Multiple style sheets can be imported. Different styles can be applied depending on the output device being used; for example, the screen version can be quite different from the printed version, so that authors can tailor the presentation appropriately for each medium.</p>
<p><strong>Cascading Order</strong><br />What style will be used when there is more than one style specified for an XHTML element?<br />Generally speaking we can say that all the styles will &#8220;cascade&#8221; into a new &#8220;virtual&#8221; style sheet by the following rules, where number one has the highest priority:</p>
<ol>
<li><strong>Author Styles</strong> (style specified by the web page author)<br />
<br />There are three ways of specifying a style sheet:</li>
<ul>
<li><strong>Inline Style:</strong> inside an HTML element, specified using the &#8220;style&#8221; attribute.</li>
<li><strong>Internal Style Sheet:</strong> embedded style in the head section of an HTML page.</li>
<li><strong>External Style Sheet:</strong> a separate CSS-file referenced from the document.</li>
</ul>
<li><strong>User Style</strong></li>
<ul>
<li>a locally stored CSS-file specified by the user in the browser options, and acting as an override, to be applied to all documents.</li>
</ul>
<li><strong>User Agent Style</strong> (Browser default)</li>
<ul>
<li>the default style sheet applied by the user agent, e.g. the browser&#8217;s default presentation of elements.</li>
</ul>
</ol>
<p>The style sheet with the highest priority gets used to display the content. Declarations that are not set in the highest priority source, will get passed on by a source of lower priority such as the user agent style. This process is called <em>cascading</em>.</p>
<p>So, an inline style (inside an XHTML element) has the highest priority, which means that it will override a style defined inside the  &#60;head&gt; tag, or in an external style sheet, or in a browser (a default value).</p>
<p><strong>Caution:</strong><br />If the link to the external style sheet is placed after the internal style sheet in XHTML document &#60;head&gt;, the external style sheet will override the internal style sheet!</p>
<p><strong>Inline Styles</strong><br />An inline style loses many of the advantages of style sheets by mixing content with presentation. Avoid using inline style!</p>
<p>To use inline styles you use the style attribute in the relevant element. The style attribute can contain any CSS property.</p>
<p>The example shows how I have changed the colour of header in this article from the original Albeo theme:</p>
<p><code><br />
&#60;h2 style="color:#0183ac;"&gt;Designing with CSS - An Introduction&#60;/h2&gt;<br />
</code></p>
<p><strong>Internal Style Sheet</strong><br />An internal style sheet should be used when a single document has a unique style. You define internal styles in the head section of an XHTML page, by using the &#60;style&gt; tag.</p>
<p><strong>Example:</strong><br />In my main style sheet for my website with more than hundred pages, h1 and p elements are styled like this:</p>
<p><code><br />
h1 {text-align:left;font-weight:bold;font-size:14px;color:blue;margin:5px 5px}<br />
p {text-align:justify;padding:0 5px;margin:5px 0}<br />
</code></p>
<p>But in one particular page I would like them to be different, so I use an internal style sheet on that page, as shown below:</p>
<p><code><br />
&lt;head&gt;<br />
&lt;style type="text/css"&gt;<br />
&lt;!--<br />
h1 {text-align:center;font-weight:bold;font-size:18px;color:red;margin:10px 5px 15px}<br />
p {text-align:center}<br />
--&gt;<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
</code></p>
<p><strong>External Style Sheet</strong><br />External style sheets are best as you have the most control over styles. An external style sheet is ideal when the style is applied to many pages. With an external style sheet, you can change the look of an entire website by changing one file. Each page must link to the style sheet using the  tag. The  tag goes inside the head section:</p>
<p><code><br />
&lt;head&gt;<br />
&lt;link rel="stylesheet" type="text/css" href="mystyle.css" media="screen" /&gt;<br />
&lt;/head&gt;<br />
</code></p>
<p>An external style sheet can be written in any text editor, and should be saved with a .css extension. The file should not contain any HTML tags. An example of a style sheet file is shown below:</p>
<p><code><br />
body {font-family:verdana,arial,helvetica,sans-serif;font-size:11px;line-height:1.25;color:#18397c;background:url('../asset/main.png') no-repeat top center}<br />
h1 {text-align:center;font-weight:700;font-size:14px;color:#31659c;margin:0 0 5px}<br />
p {text-align:justify;padding:0 5px;margin:.5px 0}<br />
</code></p>
<p><strong>Tips:</strong><br />Even multiple external style sheets can be referenced inside a single XHTML document. On my website, I have different style sheets for layout, typography, navigation, and forms, etc. If a page doesn&#8217;t have a form then it need not have a link to style sheet for forms. I also avoid whitespace, and use shorthand to reduce the file size.</p>
<p><strong>Multiple Styles Cascade into One</strong><br />If some properties have been set for the same selector in different style sheets, the values will be inherited from the higher priority style sheet as explained before.</p>
<p>For example, the h2 selector has the following properties in different style sheets for a document:</p>
<p>External Style Sheet</p>
<p><code><br />
h2 {text-align:center;font-weight:bold;font-size:13px;color:brown;background-color:lime;padding:2px 0;margin:5px 0}<br />
</code></p>
<p>Internal Style Sheet</p>
<p><code><br />
h2 {text-align:left;padding:2px 5px}<br />
</code></p>
<p>Inline Style</p>
<p><code><br />
&lt;h2 style="font-size:15px;color:red;"&gt;Designing with CSS - An Introduction&lt;/h2&gt;<br />
</code></p>
<p>The <em>virtual style sheet</em> for the h2 element on the page with an inline style and the internal style sheet and linked to the external style sheet will be:</p>
<p><code><br />
h2 {text-align:left;font-weight:bold;font-size:15px;color:red;background-color:lime;padding:2px 5px;margin:5px 0}<br />
</code></p>
<p>The font-size and color are inherited from the inline style (highest priority), text-alignment from the internal style sheet, and the rest from the external style sheet (lowest priority). Interestingly, padding is modified as per the internal style sheet.</p>
<p><strong>CSS Rules</strong><br />CSS is a simple language. It is easy to read and write, and takes very little time to understand the basics and start building your own style sheets.</p>
<p>In CSS, a rule is a statement about one style aspect of one or more XHTML elements. A style sheet consists of one or more rules that apply to an XHTML document. A CSS rule is made up of a <em>selector</em> and a <em>declaration</em>. Each declaration itself consists of a <em>property</em> and a <em>value</em>.</p>
<p>Selectors are one of the most important aspects of CSS as they are used to &#8220;select&#8221; elements on an XHTML page so that they can be styled. The declaration tells a browser how to style any element on a document that is selected.</p>
<p><code><br />
selector {property:value}<br />
</code></p>
<p>The selector is the link between the XHTML document and the style. It specifies which XHTML elements are affected by the declaration. The declaration is that part of the rule that sets forth what the effect will be. You can group selectors together that share a common declaration.</p>
<p>The property is a quality or characteristic of that element that you are choosing to style. CSS2 defines around 120 properties and you can assign values to all of them. The value is a precise specification of the property. You may specify more than one property for one selector.</p>
<p><strong>Punctuation</strong><br />Each selector in a group must be separated by a comma. A declaration is surrounded by curly braces. Property and value are separated by a colon. If the value is multiple words, put quotes around the value. You must separate multiple properties for one selector with a semicolon. Do not leave spaces between the property value and the units! &#8220;margin-left:10 px&#8221; (instead of &#8220;margin-left:10px&#8221;) will work in IE, but not in Firefox or Opera.</p>
<p>To make your CSS code more readable, you can put each property and its value on a line by itself. But this will increase the size of your style sheet.</p>
<p><strong>Example:</strong></p>
<p><code><br />
p {font-family:Cambria,"Times New Roman",Times,serif;text-align:justify;padding:0 5px;margin:5px 0}<br />
p {<br />
font-family:Cambria,"Times New Roman",Times,serif;<br />
text-align:justify;<br />
padding:0 5px;<br />
margin:5px 0<br />
}<br />
h1,h2,h3 {text-align:center;font-weight:700;font-size:14px;color:#31659c;margin:0 0 5px}<br />
h2 {font-size:13px}<br />
h3 {font-size:12px}<br />
</code></p>
<p>The curly braces and colon make it possible for the browser to distinguish between the selector, property, and value.</p>
<p><strong>Type Selectors</strong><br />A type selector matches the name of a document language element type. A type selector matches every instance of the element type in the document tree. Any XHTML element type can be used as a type selector. Type selectors are the simplest kind of selectors.</p>
<p><strong>Example:</strong><br />The following rule matches all h1 elements in the document and sets their font size to 14px:</p>
<p><code><br />
h1 {font-size:14px}<br />
</code></p>
<p><strong>id and class Selectors</strong><br />In addition to setting a style for an XHTML element, CSS allows you to specify your own selectors called &#8220;id&#8221; and &#8220;class&#8221;.</p>
<p><strong>id Selector</strong><br />The id selector is used to specify a style for a single, unique element. You can use an id selector name only <em>once</em> in your XHTML document. The id selector uses the id attribute of the HTML element, and is defined with a &#8220;#&#8221;.</p>
<p><strong>Example:</strong></p>
<p><code><br />
#wrapper {width:960px;min-height:100%;background-color:#f6f8fa;margin:0 auto}<br />
</code></p>
<p>The wrapper of my website is used only once in a page, so I use id selector for this outermost container.</p>
<p><code><br />
&#60;div id="wrapper"&#62;<br />
... content<br />
&#60;/div&#62;<br />
</code></p>
<p><strong>Caution:</strong><br />Do NOT start an ID name with a number! It will not work in Mozilla/Firefox.</p>
<p><strong>class Selector</strong><br />The class selector is used to specify a style for a group of elements. Unlike the id selector, the class selector can be used as often as you need within your XHTML document. This allows you to set a particular style for any XHTML element with the same class. The class selector uses the XHTML class attribute, and is defined with a &#8220;.&#8221;</p>
<p><strong>Example:</strong></p>
<p><code><br />
h2 {text-align:center;font-weight:bold;font-size:13px;color:brown;background-color:lime;padding:2px 0;margin:5px 0}<br />
p {text-align:justify;padding:0 5px;margin:.5px 0}<br />
.left {text-align:left}<br />
</code></p>
<p>Now, if I want, I may left-align my h2 element with a padding of 5px as follows:</p>
<p><code><br />
&lt;h2 class="left" style="padding-left:5px;"&gt;Designing with CSS - An Introduction&lt;/h2&gt;<br />
</code></p>
<p>Similarly, any XHTML element with class name of &#8220;left&#8221; will be left-aligned.</p>
<p><code><br />
&lt;p class="left"&gt;This para is left-aligned, and not justified as defined in the external style sheet.&lt;/p&gt;<br />
</code></p>
<p><strong>Caution:</strong><br />Do NOT start a class name with a number! This is only supported in Internet Explorer.</p>
<p>This article is not a tutorial, and there are other selectors like:<br />universal selector, descendant or contextual selectors, child and sibling selectors, attribute selectors, pseudo-elements and pseudo-classes.<br />I will explain these selectors as and when I use them in these two series.</p>
<p>Another thing that I haven&#8217;t discussed here is that you have an option of two different writing styles for your CSS rules: longhand and shorthand. I always prefer shorthand that allows you to condense your rules by assigning multiple properties and values in a single line, and create a smaller file which uploads faster.</p>
<p><strong>CSS Comments</strong><br />Comments are used to explain your code, and may help you when you edit your code at a later date. Comments are ignored by browsers. Comments may not be nested. CSS comments begin with characters &#8220;/*&#8221;, and end with characters &#8220;*/&#8221;.</p>
<p><strong>Example:</strong></p>
<p><code><br />
/*<br />
Copyright 2009 GoldenTwine Informatics<br />
Style name: gti - main style web 2.0<br />
W3C CSS Validator - Valid CSS!<br />
*/<br />
<br />
/* clearfix */<br />
.clearfix:after {content:".";display:block;height:0;clear:both;visibility:hidden}<br />
.clearfix {display:inline-block}<br />
/* Hides from IE-mac \*/<br />
* html .clearfix {height:1%}<br />
.clearfix {display:block}<br />
/* End hide from IE-mac */<br />
</code></p>
<div style="width:480px;font-weight:normal;font-size:10px;color:#a3756e;background:#fff6bf;border:1px solid #eaba00;margin-top:5px;margin-bottom:5px;padding:5px;">
<p>For a short guide to styling your Web pages, try Dave Raggett&#8217;s<br /><a href="http://www.w3.org/MarkUp/Guide/Style" target="_blank"><strong>Adding a touch of style</strong></a>.<br />It will show you how to use W3C&#8217;s Cascading Style Sheets language (CSS) as well as alternatives using HTML itself.</p>
<p><strong>Further information:</strong><br /><a href="http://www.w3.org/TR/CSS21/" target="_blank">Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</a><br /><a href="http://www.w3.org/TR/CSS21/intro.html" target="_blank">Introduction to CSS 2.1</a><br /><a href="http://www.w3.org/TR/CSS21/syndata.html" target="_blank">Syntax and basic data types</a><br /><a href="http://www.w3.org/TR/CSS2/selector.html" target="_blank">Selectors</a></p>
</div>
<p>With this brief introduction, get ready to share with us <strong>tips, tricks, techniques, and snippets</strong> which will enable you to design your web document with <strong>creative CSS</strong>. Your comments, suggestions, and contributions are warmly anticipated!</p>
<p><strong>Small Business Website Design</strong><br />Get a professionally designed special custom five-page website ideal for small business that need an online presence as well as personal sites or informational sites at an amazing price of only $125.<br /><a href="http://www.goldenTwine.com/srv/wds.htm" target="_blank"><strong>Visit our website to learn more!</strong></a></p>
<div style="width:480px;height:100px;font-weight:normal;font-size:10px;color:#3068b5;background:#edf5fb;border:1px solid #73aedb;border-top:2px solid #73aedb;margin-top:5px;margin-bottom:5px;padding:5px;"><a href="http://www.goldenTwine.com/gblcom.htm" target="_blank"><img src="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg?w=64&#038;h=64" style="float:left;display:inline;background-color:#fff;border:1px solid #ced8e2;margin:0 5px 2px 0;padding:4px;" alt="Subrato Paul" title="" width="64" height="64" class="size-full wp-image-93" /></a><strong>Author:</strong> Subrato Paul lives in Kolkata, India. He’s the owner of <a href="http://www.goldenTwine.com/" target="_blank">GoldenTwine Informatics</a>, which he founded in 2003. He is a website designer, Internet marketer, and provides social networking and bookmarking services. He writes in his official blog and as a guest writer about internet trends, computer issues, internet marketing, website design and development, and his website&#8230;</p>
<p style="text-align:center;margin-top:5px;" class="getsocial"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2005.png?w=480" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-3c" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2015.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-3c&amp;title=Creative%20CSS%20-%20An%20Introduction" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2025.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-3c&amp;title=Creative%20CSS%20-%20An%20Introduction" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2035.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-3c&amp;title=Creative%20CSS%20-%20An%20Introduction" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2045.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-3c&amp;title=Creative%20CSS%20-%20An%20Introduction" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2055.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-3c&amp;Title=Creative%20CSS%20-%20An%20Introduction" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2065.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Creative%20CSS%20-%20An%20Introduction+%40+http%3A%2F%2Fwp.me%2FpEzXT-3c" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2075.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-3c" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2085.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-3c&amp;headline=Creative%20CSS%20-%20An%20Introduction" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2095.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-3c&amp;h=Creative%20CSS%20-%20An%20Introduction" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2105.png?w=480" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2115.png?w=480" /></p>
</div>
<p><strong>Social Networking</strong><br />Join goldenTwine on <a href="http://twitter.com/goldenTwineCom" target="_blank">Twitter</a>, <a href="http://www.facebook.com/goldenTwine" target="_blank">Facebook</a>, <a href="http://www.myspace.com/goldenTwine" target="_blank">MySpace</a> and <a href="http://in.linkedin.com/in/goldenTwine" target="_blank">LinkedIn</a>.</p>
<p><strong>Did you like this article?</strong><br /> If you&#8217;re new to goldenTwine blog, you may want to<br /><a href="http://goldTwine.wordpress.com/feed/" target="_blank">subscribe to our RSS feed</a> | <a href="http://wp.me/pEzXT-3c">Permanent Link</a>.<br />Thanks for visiting!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goldtwine.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goldtwine.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goldtwine.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goldtwine.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goldtwine.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goldtwine.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goldtwine.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goldtwine.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goldtwine.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goldtwine.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goldtwine.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goldtwine.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goldtwine.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goldtwine.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=198&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goldtwine.wordpress.com/2009/12/20/creative-css-an-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e09eae3d57acd15ed7338053e604a8?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">goldTwine</media:title>
		</media:content>

		<media:content url="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg" medium="image">
			<media:title type="html">Subrato Paul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2005.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2015.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2025.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2035.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2045.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2055.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2065.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2075.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2085.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2095.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2105.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2115.png" medium="image" />
	</item>
		<item>
		<title>Insider Secrets to Marketing Your Business on the Internet</title>
		<link>http://goldtwine.wordpress.com/2009/11/30/insider-secrets-to-marketing-your-business-on-the-internet/</link>
		<comments>http://goldtwine.wordpress.com/2009/11/30/insider-secrets-to-marketing-your-business-on-the-internet/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 13:52:12 +0000</pubDate>
		<dc:creator>Subrato Paul</dc:creator>
				<category><![CDATA[Home Based Business]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[business start up program]]></category>
		<category><![CDATA[free trial]]></category>
		<category><![CDATA[Insider Secrets]]></category>
		<category><![CDATA[Internet Marketing Center]]></category>
		<category><![CDATA[product review]]></category>

		<guid isPermaLink="false">http://goldtwine.wordpress.com/?p=188</guid>
		<description><![CDATA[Insider Secrets to Marketing Your Business on The Internet is the #1-selling business start-up program that has helped THOUSANDS of regular people with no previous experience or technical skills launch successful eBusinesses.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=188&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0183ac;">30-Day Trials to the Insider Secrets eBusiness Start Up Program</h2>
<p>Start Your Own Successful Internet Business  From Square One, With a Proven A-Z Program for Making Money Online.</p>
<p>If you&#8217;d like to start making money on the Internet right away without any risk, but don&#8217;t have ANY business experience, technical skills, or  ideas for what you should sell, take a look at <em>Insider Secrets to Marketing Your Business on the Internet</em>,  a comprehensive, step-by-step roadmap that teaches anyone how to quickly and easily start a successful Internet business <em>from scratch</em>.</p>
<p><strong>Insider Secrets</strong> has already helped thousands of people start their own profitable websites&#8230; earning six-figure incomes in many cases.</p>
<p>Created by the Internet Marketing Center, <em>Insider Secrets</em>  reveals the exact process they themselves used  to generate over $100 Million in online sales.</p>
<p>Using simple, easy-to-understand language, along with plenty of in-depth video and audio tutorials, <em>Insider Secrets</em> walks you through the six critical steps to building a successful Internet business from square one:</p>
<ol>
<li>Find a lucrative niche market and  decide what to sell&#8230;</li>
<li>Easily create  your  website, complete with winning sales copy</li>
<li>Attract your first eager visitors &#8230;</li>
<li>Take your first credit card payment</li>
<li>Ramp up sales and traffic quickly</li>
<li>Automate your business to be &#8220;hands free&#8221;</li>
</ol>
<p>Then, once your website is live, and you&#8217;re getting your first visitors, you can take advantage of <em>Insider Secret&#8217;s</em> hundreds of ADVANCED strategies  to improve your business, and drive your sales even higher!</p>
<p>And best of all, you can be successful with <em>Insider Secrets</em> even if you have no business experience, no computer skills of any kind, and no ideas for a business or even a product.</p>
<p>And because <em>Insider Secrets</em> is 100% online, they&#8217;re able to update it <em>whenever</em> there are new test results to add, or new techniques to try out, so it NEVER goes out of date!</p>
<p>Their latest update? They&#8217;ve just added a brand-new series of expert-led webinars that will show you how to make even MORE money with THREE hot new techniques, including Twitter and AdWords!</p>
<p>When you become an <em>Insider Secrets </em>member, you get:</p>
<ul>
<li>Over 1,250 pages of detailed, moneymaking strategies and techniques carefully laid out in easy-to-follow steps</li>
<li>&#8220;Real time&#8221; updates with the latest and greatest online marketing strategies</li>
<li>Streaming videos to make your learning even easier</li>
<li>Content you can print out, or download to  your iPod, so you can learn new techniques, even when you&#8217;re on the go, and away from your computer</li>
<li>A &#8220;private rolodex&#8221; of hundreds of Internet marketing tools and resources</li>
<li>A private 15-minute phone consultation with one of our marketing specialists</li>
<li>IMC&#8217;s  exclusive <em>Ebusiness Road Map System</em></li>
</ul>
<p><em>Insider Secrets</em> contains every last tip and technique you&#8217;ll need to start your money-making website. Thousands of other people have <em>already</em> used it to earn money online &#8212; six figures annually, in many cases &#8212; so you can be confident it will work for you, too!</p>
<p>It also comes with a  90-day, 100% money back guarantee, so there&#8217;s no risk in giving it a try! Within minutes of receiving an order, we&#8217;ll send out a personal username and password for access to the <em>Insider Secrets</em> private website.</p>
<p>If you want to make money online, you get access to this proven online business building program now.</p>
<p>To activate your no-obligation 30-Day trial, and see for yourself, just follow this link:</p>
<p><strong>Internet Marketing</strong><br />Internet Marketing, also referred to as i-marketing, web marketing, online marketing, or eMarketing, is the marketing of products or services over the Internet.<br /><a href="http://www.goldenTwine.com/mrk.htm" target="_blank"><strong>Visit our website to learn more!</strong></a></p>
<div style="width:480px;height:100px;font-weight:normal;font-size:10px;color:#3068b5;background:#edf5fb;border:1px solid #73aedb;border-top:2px solid #73aedb;margin-top:5px;margin-bottom:5px;padding:5px;"><a href="http://www.goldenTwine.com/gblcom.htm" target="_blank"><img src="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg?w=64&#038;h=64" style="float:left;display:inline;background-color:#fff;border:1px solid #ced8e2;margin:0 5px 2px 0;padding:4px;" alt="Subrato Paul" title="" width="64" height="64" class="size-full wp-image-93" /></a><strong>Author:</strong> Subrato Paul lives in Kolkata, India. He’s the owner of <a href="http://www.goldenTwine.com/" target="_blank">GoldenTwine Informatics</a>, which he founded in 2003. He is a website designer, Internet marketer, and provides social networking and bookmarking services. He writes in his official blog and as a guest writer about internet trends, computer issues, internet marketing, website design and development, and his website&#8230;</p>
<p style="text-align:center;margin-top:5px;" class="getsocial"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2005.png?w=480" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-32" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2015.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-32&amp;title=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2025.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-32&amp;title=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2035.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-32&amp;title=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2045.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-32&amp;title=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2055.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-32&amp;Title=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2065.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet+%40+http%3A%2F%2Fwp.me%2FpEzXT-32" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2075.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-32" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2085.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-32&amp;headline=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2095.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-32&amp;h=Insider%20Secrets%20to%20Marketing%20Your%20Business%20on%20the%20Internet" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2105.png?w=480" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2115.png?w=480" /></p>
</div>
<p><strong>Follow goldenTwine</strong><br />Join the social networking revolution, follow us on <a href="http://twitter.com/goldenTwineCom" target="_blank">twitter</a> and <a href="http://www.facebook.com/goldenTwine" target="_blank">Facebook</a>!</p>
<p><strong>Did you like this article?</strong><br /> If you&#8217;re new to goldenTwine blog, you may want to<br /><a href="http://goldTwine.wordpress.com/feed/" target="_blank">subscribe to our RSS feed</a> | <a href="http://wp.me/pEzXT-32">Permalink</a>.<br />Thanks for visiting!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goldtwine.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goldtwine.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goldtwine.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goldtwine.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goldtwine.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goldtwine.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goldtwine.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goldtwine.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goldtwine.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goldtwine.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goldtwine.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goldtwine.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goldtwine.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goldtwine.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=188&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goldtwine.wordpress.com/2009/11/30/insider-secrets-to-marketing-your-business-on-the-internet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e09eae3d57acd15ed7338053e604a8?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">goldTwine</media:title>
		</media:content>

		<media:content url="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg" medium="image">
			<media:title type="html">Subrato Paul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2005.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2015.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2025.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2035.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2045.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2055.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2065.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2075.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2085.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2095.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2105.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2115.png" medium="image" />
	</item>
		<item>
		<title>Build Your New eBusiness in 5 Steps!</title>
		<link>http://goldtwine.wordpress.com/2009/11/10/build-your-new-ebusiness-in-5-steps/</link>
		<comments>http://goldtwine.wordpress.com/2009/11/10/build-your-new-ebusiness-in-5-steps/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 07:56:57 +0000</pubDate>
		<dc:creator>Subrato Paul</dc:creator>
				<category><![CDATA[Home Based Business]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Bebiz 4.0]]></category>
		<category><![CDATA[business building tool]]></category>
		<category><![CDATA[Internet Marketing Center]]></category>
		<category><![CDATA[site builder]]></category>

		<guid isPermaLink="false">http://goldtwine.wordpress.com/?p=176</guid>
		<description><![CDATA[BeBiz is an easy-to-use interactive wizard driven system that guides you every step of the way as you create your own online business. It includes full video tutorials to walk you through each step from finding profitable markets to creating a winning sales letter to taking your first orders. BeBiz is an all-in-one automated business building tool.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=176&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0183ac;">Product Review: BeBiz Business Building Tool!</h2>
<p>If you ask me what the quickest, easiest way to start a moneymaking online business is, and I&#8217;m never sure what to tell you.</p>
<p>The truth is, there&#8217;s never been an easy solution to start making money online, without first putting in a reasonable amount of time and effort.</p>
<p>However, not anymore!</p>
<p>If you are struggling on your own to find viable niche markets, source hot-selling products, design professional websites, write winning sales copy, or find highly targeted traffic, I&#8217;m reviewing in this post a business building tool that&#8217;s designed just for you!</p>
<p><strong>Internet Marketing Center (IMC)</strong> has just released in October the next generation of a simple, all-in-one automated business building tool that will have you earning money on the Internet faster than you ever thought possible. It’s called “BeBiz”. An improved and completely updated <strong>BeBiz is now even FASTER and EASIER to use to build a complete website</strong> <em>from square one</em> than ever before!</p>
<p><strong>Click Here to See the BeBiz Internet Business Building Tool for Yourself</strong></p>
<p>I’ve never seen another all-in-one tool like this on the internet that can help you build a money making Internet business so easily.</p>
<p>You don’t need business experience, technical skills, or even an idea for what to sell online to make money. If you can check your email, you have what it takes to get started with this tool TODAY, and &#8220;point and click&#8221; your way to your first sales on the Internet, in just a few days!</p>
<p><strong>How BeBiz Works</strong></p>
<p>BeBiz is a wizard driven one-of-a-kind tool that guides you through creating your very own Internet business in five essential steps you MUST follow; from starting with your market research to accepting payments for orders.</p>
<p><strong>Step 1:</strong> Identify profitable markets eager to buy <em>whatever</em>you offer them.</p>
<p><strong>Step 2:</strong> Find hot products to sell on your website that your market will LOVE.</p>
<p><strong>Step 3:</strong> Instantly create a professional looking website that&#8217;s designed to <em>sell</em>.</p>
<p><strong>Step 4:</strong> Easily create compelling sales copy that will turn the maximum number of visitors into paying customers.</p>
<p><strong>Step 5:</strong> Start accepting payments on your website instantly.</p>
<p>Once your site is live, and you&#8217;re getting traffic and making sales, you can <em>continue</em> to use <em>BeBiz</em> to manage your online business, virtually on autopilot!</p>
<p>IMC has put up a free video to demonstrate exactly how this tool walks you, step by step, through the five simple stages of creating a new site, from finding a lucrative niche market to getting qualified traffic.</p>
<p>Following the video, you&#8217;ll have the chance to download this one-of-a-kind business building tool, and use it for the next 30 days to start your own website from scratch.</p>
<p>I strongly recommend you at least give this tool a try. It&#8217;ll make the difference between struggling on your own to make money online (but never seeing results), and having a complete, professional Internet business earning hands-free income.</p>
<p>To watch the video demonstration, and download your free trial, just follow this link:</p>
<div style="width:480px;font-weight:normal;font-size:10px;color:#8a1f11;background:#fbe3e4;border:1px solid #fbc2c4;margin-top:5px;margin-bottom:5px;padding:5px;">
<p><strong>Note:</strong> Trial copies of this tool are only available for a limited time, so you&#8217;ll need to go and download yours right away!</p>
</div>
<div style="width:480px;height:100px;font-weight:normal;font-size:10px;color:#3068b5;background:#edf5fb;border:1px solid #73aedb;border-top:2px solid #73aedb;margin-top:5px;margin-bottom:5px;padding:5px;"><a href="http://www.goldenTwine.com/gblcom.htm" target="_blank"><img src="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg?w=64&#038;h=64" style="float:left;display:inline;background-color:#fff;border:1px solid #ced8e2;margin:0 5px 2px 0;padding:4px;" alt="Subrato Paul" title="" width="64" height="64" class="size-full wp-image-93" /></a><strong>Author:</strong> Subrato Paul lives in Kolkata, India. He’s the owner of <a href="http://www.goldenTwine.com/" target="_blank">GoldenTwine Informatics</a>, which he founded in 2003. He is a website designer, Internet marketer, and provides social networking and bookmarking services. He writes in his official blog and as a guest writer about internet trends, computer issues, internet marketing, website design and development, and his website&#8230;</p>
<p style="text-align:center;margin-top:5px;" class="getsocial"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2005.png?w=480" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-2Q" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2015.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-2Q&amp;title=Build%20Your%20New%20eBusiness%20in%205%20Steps!" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2025.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-2Q&amp;title=Build%20Your%20New%20eBusiness%20in%205%20Steps!" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2035.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-2Q&amp;title=Build%20Your%20New%20eBusiness%20in%205%20Steps!" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2045.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-2Q&amp;title=Build%20Your%20New%20eBusiness%20in%205%20Steps!" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2055.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-2Q&amp;Title=Build%20Your%20New%20eBusiness%20in%205%20Steps!" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2065.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Build%20Your%20New%20eBusiness%20in%205%20Steps!+%40+http%3A%2F%2Fwp.me%2FpEzXT-2Q" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2075.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-2Q" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2085.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-2Q&amp;headline=Build%20Your%20New%20eBusiness%20in%205%20Steps!" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2095.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-2Q&amp;h=Build%20Your%20New%20eBusiness%20in%205%20Steps!" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2105.png?w=480" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2115.png?w=480" /></p>
</div>
<p><strong>Follow goldenTwine</strong><br />Join the social networking revolution, follow us on <a href="http://twitter.com/goldenTwineCom" target="_blank">twitter</a> and <a href="http://www.facebook.com/goldenTwine" target="_blank">Facebook</a>!</p>
<p><strong>Did you like this article?</strong><br /> If you&#8217;re new to goldenTwine blog, you may want to<br /><a href="http://goldTwine.wordpress.com/feed/" target="_blank">subscribe to our RSS feed</a> | <a href="http://wp.me/pEzXT-2Q">Permalink</a>.<br />Thanks for visiting!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goldtwine.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goldtwine.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goldtwine.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goldtwine.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goldtwine.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goldtwine.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goldtwine.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goldtwine.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goldtwine.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goldtwine.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goldtwine.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goldtwine.wordpress.com/176/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goldtwine.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goldtwine.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=176&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goldtwine.wordpress.com/2009/11/10/build-your-new-ebusiness-in-5-steps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e09eae3d57acd15ed7338053e604a8?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">goldTwine</media:title>
		</media:content>

		<media:content url="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg" medium="image">
			<media:title type="html">Subrato Paul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2005.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2015.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2025.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2035.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2045.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2055.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2065.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2075.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2085.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2095.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2105.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2115.png" medium="image" />
	</item>
		<item>
		<title>Let’s GetSocial – Social Bookmarking Tool</title>
		<link>http://goldtwine.wordpress.com/2009/10/21/let%e2%80%99s-getsocial-%e2%80%93-social-bookmarking-tool/</link>
		<comments>http://goldtwine.wordpress.com/2009/10/21/let%e2%80%99s-getsocial-%e2%80%93-social-bookmarking-tool/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 20:23:02 +0000</pubDate>
		<dc:creator>Subrato Paul</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social Bookmarking]]></category>
		<category><![CDATA[Internet Trends]]></category>
		<category><![CDATA[Tips, Tricks, Techniques]]></category>
		<category><![CDATA[social bookmarking]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[techniques]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[blogging tools]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[GetSocial]]></category>
		<category><![CDATA[Hillel Stoler]]></category>
		<category><![CDATA[wordpress.com]]></category>

		<guid isPermaLink="false">http://goldtwine.wordpress.com/?p=132</guid>
		<description><![CDATA[Social Bookmarking Social bookmarking is a method for Internet users to share, organize, search, and manage bookmarks of web resources. Unlike file sharing, the resources themselves aren&#8217;t shared, merely bookmarks that reference them.- from Wikipedia Sharing your blog &#8211; WordPress[dot]com bloggers should also GetSocial! You may have seen in the footer of any post a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=132&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0183ac;">Social Bookmarking</h2>
<div style="width:468px;height:50px;font-weight:normal;font-size:10px;color:#807970;background:#eee;border:1px solid #c8c8c8;margin-top:5px;margin-bottom:5px;padding:5px;"><strong>Social bookmarking</strong> is a method for Internet users to share, organize, search, and manage bookmarks of web resources. Unlike file sharing, the <em>resources</em> themselves aren&#8217;t shared, merely bookmarks that <em>reference</em> them.<br />- from <strong>Wikipedia</strong></div>
<h2 style="color:#0183ac;">Sharing your blog &#8211; WordPress[dot]com bloggers should also GetSocial!</h2>
<p>You may have seen in the footer of any post a request from the author –<br />If you enjoyed this post, share it<br />…and you will see <em>social bookmarking options</em>.</p>
<p>But the bad news is if you are blogging on free <strong>wordpress[dot]com</strong> like millions of other users, it is not free from limitations. You can&#8217;t integrate social bookmarking options directly in your blog posts, as the JavaScript code needed to do so is stripped by them for security reasons.</p>
<div style="width:468px;height:30px;font-weight:normal;font-size:10px;color:#807970;background:#eee;border:1px solid #c8c8c8;margin-top:5px;margin-bottom:5px;padding:5px;"><img src="http://goldtwine.files.wordpress.com/2009/10/blgquote.gif?w=30&#038;h=30" style="float:left;display:inline;background-color:#eee;margin:0 5px 2px 0;" alt="" title="" width="30" height="30" class="size-full wp-image-133" />Users are not allowed to post <strong>JavaScript</strong> on WordPress[dot]com blogs. JavaScript can be used for malicious purposes.</div>
<h2 style="color:#0183ac;">Getsocial &#8211; Social Bookmarking for wordpress[dot]com bloggers</h2>
<p>Fortunately, there are ways to get Social Bookmarking buttons in your posts easily (<em>see footer of posts in this blog</em>). You have to put the links manually under each post. I am using <strong>GetSocial</strong> which is absolutely free social bookmarking tool made especially for WordPress[dot]com bloggers. It automatically generates <em>script less social bookmarking buttons</em> for each one of your posts.</p>
<p>You can also use GetSocial to add 3rd party buttons to your blog post (such as AddThis, AddToAny, Email to a Friend and more).</p>
<h2 style="color:#0183ac;">How to download GetSocial?</h2>
<p><strong>If you are interested then</strong></p>
<a href="http://getsocialserver.wordpress.com/downloads/" target="_blank"><img src="http://goldtwine.files.wordpress.com/2009/10/blgdngs.jpg?w=205&#038;h=76" alt="Social Bookmarking Tool" title="" width="205" height="76" class="size-full wp-image-134" /></a>
<p style="clear:left;">After you download GetSocial, Extract and run GetSocial.exe (No Installation is needed).</p>
<h2 style="color:#0183ac;">How to Add GetSocial Bookmark Icons to Your Post</h2>
<p>Write a new post and publish it without the social bookmarking button. But I always prefer to <em>save the draft</em>, and get the <em>permalink</em> of my post, rather than publish my incomplete post.</p>
<p>With <strong>GetSocial</strong> wizard interface which is very friendly, fast and easy to use, you can add social bookmarking icons to your new post in 3 steps. You may also implement 3rd Party (like AddThis or AddToAny) Buttons in your blog.</p>
<p><strong>Step 1. Post Information</strong></p>
<p>You will need to enter the title of your post and a permalink to your post (web address of your post).</p>
<p><strong>Post Title:</strong> Let’s Get Social – Social Bookmarking Tool</p>
<p><strong>Post Permalink:</strong> http://wp.me/pEzXT-28 (I always use the shortlink)</p>
<p><strong>Step 2. Select the appearance of your GetSocial button</strong></p>
<p>You have five options:</p>
<ul>
<li>Classic (300&#215;27)</li>
<li>Mini (200&#215;18)</li>
<li>Design (400&#215;36)</li>
<li>Design Mini (300&#215;27)</li>
<li>Text Links</li>
</ul>
<p>As you select, you see the buttons in a preview window.</p>
<p><strong>This is how they look:</strong></p>
<p style="text-align:left;" class="getsocial"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1003.png?w=480" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1013.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1023.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1033.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1043.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1053.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;Title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1063.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool+%40+http%3A%2F%2Fwp.me%2FpEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1073.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1083.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;headline=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1093.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;h=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1103.png?w=480" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs1113.png?w=480" /></p>
<p style="text-align:left;" class="getsocial"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2003.png?w=480" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2013.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2023.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2033.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2043.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2053.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;Title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2063.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool+%40+http%3A%2F%2Fwp.me%2FpEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2073.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2083.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;headline=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2093.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;h=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2103.png?w=480" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2113.png?w=480" /></p>
<p style="text-align:left;" class="getsocial"><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3013.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3023.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3033.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3043.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3053.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;Title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3063.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool+%40+http%3A%2F%2Fwp.me%2FpEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3073.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3083.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;headline=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3093.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;h=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs3103.png?w=480" alt="Add to Newsvine" /></a></p>
<p style="text-align:left;" class="getsocial"><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4013.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4023.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4033.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4043.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4053.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;Title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4063.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool+%40+http%3A%2F%2Fwp.me%2FpEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4073.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4083.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;headline=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4093.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;h=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs4103.png?w=480" alt="Add to Newsvine" /></a></p>
<p style="text-align:left;font-size:8pt;">Add to: <a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-28" rel="nofollow" target="_blank">Facebook</a> | <a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Digg</a> | <a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Del.icio.us</a> | <a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Stumbleupon</a> | <a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Reddit</a> | <a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;Title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Blinklist</a> | <a title="Add to Twitter" href="http://twitter.com/home/?status=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool+%40+http%3A%2F%2Fwp.me%2FpEzXT-28" rel="nofollow" target="_blank">Twitter</a> | <a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-28" rel="nofollow" target="_blank">Technorati</a> | <a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;headline=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Yahoo Buzz</a> | <a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;h=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Newsvine</a></p>
<p><strong>3rd Party (like AddThis or AddToAny) Buttons</strong></p>
<p style="text-align:left;font-size:8pt;"><img align="middle" style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gsr13.png?w=21&#038;h=16" title="" alt="" width="21" height="16" />   <a title="Provided by GetSocial via AddToAny.com" href="http://www.addtoany.com/email?linkurl=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;linkname=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank">Email to a friend</a></p>
<p style="text-align:left;"><a title="Bookmark Let’s GetSocial – Social Bookmarking Tool" href="http://www.addthis.com/bookmark.php?&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gsr53.png?w=125&#038;h=16" alt="Bookmark Let’s GetSocial – Social Bookmarking Tool" width="125" height="16" /></a></p>
<p style="text-align:left;"><a title="Bookmark Let’s GetSocial – Social Bookmarking Tool" href="http://www.addtoany.com/share_save?linkname=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool&amp;linkurl=http%3A%2F%2Fwp.me%2FpEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gsr43.png?w=171&#038;h=16" alt="Bookmark Let’s GetSocial – Social Bookmarking Tool" width="171" height="16" /></a></p>
<p><strong>Step 3. Get your code</strong></p>
<p>Copy the WordPress.com friendly code, and Paste it to your post (while in HTML Edit mode).</p>
<p>Preview your post, and publish it.</p>
<h2 style="color:#0183ac;">Before I End…</h2>
<p><strong>GetSocial</strong> is a Windows application built with Visual Basic. Even though it was made specifically for the WordPpress[dot]com platform, GetSocial will also work like a charm on most other blogs and websites. If you use/like it, consider donating 5.00 USD to the author of the software.</p>
<p><strong>Hillel Stoler</strong> is the creator of  <a href="http://getsocialserver.wordpress.com/" target="_blank">GetSocial</a></p>
<p><strong>System Requirements:</strong> Most <em>Windows</em> systems will run GetSocial without any additional installations. If you get error (0xc0000135) or a message that says .net Framework 2.0 is required you need to install the Redistributable Package. Use Windows Update, or download it directly from the Microsoft download center.</p>
<div style="width:468px;height:100px;font-weight:normal;font-size:10px;color:#807970;background:#eff9fe;border:1px solid #ced8e2;border-top:2px solid #ced8e2;margin-top:5px;margin-bottom:5px;padding:5px;"><a href="http://www.goldenTwine.com/gblcom.htm" target="_blank"><img src="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg?w=64&#038;h=64" style="float:left;display:inline;background-color:#fff;border:1px solid #ccc;margin:0 5px 2px 0;padding:4px;" alt="Subrato Paul" title="" width="64" height="64" class="size-full wp-image-93" /></a><strong>Author:</strong> Subrato Paul lives in Kolkata, India. He’s the owner of <a href="http://www.goldenTwine.com/" target="_blank">GoldenTwine Informatics</a>, which he founded in 2003. He is a website designer, Internet marketer, and provides social networking and bookmarking services. He writes in his official blog and as a guest writer about Internet trends, computer issues, online marketing, website design and development, and his website&#8230;</p>
<p style="text-align:center;margin-top:5px;" class="getsocial"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2003.png?w=480" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2013.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2023.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2033.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2043.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2053.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;Title=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2063.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool+%40+http%3A%2F%2Fwp.me%2FpEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2073.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-28" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2083.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;headline=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2093.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-28&amp;h=Let’s%20GetSocial%20–%20Social%20Bookmarking%20Tool" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2103.png?w=480" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2113.png?w=480" /></p>
</div>
<p><strong>Follow goldenTwine</strong><br />Join the social networking revolution, follow us on <a href="http://twitter.com/goldenTwineCom" target="_blank">twitter</a> and <a href="http://www.facebook.com/goldenTwine" target="_blank">Facebook</a>!</p>
<p><strong>Did you like this article?</strong><br /> If you&#8217;re new to goldenTwine blog, you may want to<br /><a href="http://goldTwine.wordpress.com/feed/" target="_blank">subscribe to our RSS feed</a> | <a href="http://wp.me/pEzXT-28" target="_blank">Permalink</a>.<br />Thanks for visiting!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goldtwine.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goldtwine.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goldtwine.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goldtwine.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goldtwine.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goldtwine.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goldtwine.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goldtwine.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goldtwine.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goldtwine.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goldtwine.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goldtwine.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goldtwine.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goldtwine.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=132&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goldtwine.wordpress.com/2009/10/21/let%e2%80%99s-getsocial-%e2%80%93-social-bookmarking-tool/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e09eae3d57acd15ed7338053e604a8?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">goldTwine</media:title>
		</media:content>

		<media:content url="http://goldtwine.files.wordpress.com/2009/10/blgquote.gif" medium="image" />

		<media:content url="http://goldtwine.files.wordpress.com/2009/10/blgdngs.jpg" medium="image">
			<media:title type="html">Social Bookmarking Tool</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1003.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1013.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1023.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1033.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1043.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1053.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1063.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1073.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1083.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1093.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1103.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs1113.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2003.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2013.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2023.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2033.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2043.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2053.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2063.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2073.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2083.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2093.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2103.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2113.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3013.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3023.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3033.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3043.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3053.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3063.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3073.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3083.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3093.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs3103.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4013.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4023.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4033.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4043.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4053.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4063.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4073.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4083.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4093.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs4103.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/02/gsr13.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/02/gsr53.png" medium="image">
			<media:title type="html">Bookmark Let’s GetSocial – Social Bookmarking Tool</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/02/gsr43.png" medium="image">
			<media:title type="html">Bookmark Let’s GetSocial – Social Bookmarking Tool</media:title>
		</media:content>

		<media:content url="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg" medium="image">
			<media:title type="html">Subrato Paul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2003.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2013.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2023.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2033.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2043.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2053.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2063.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2073.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2083.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2093.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2103.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2113.png" medium="image" />
	</item>
		<item>
		<title>Tips, Tricks, Techniques You Should Know</title>
		<link>http://goldtwine.wordpress.com/2009/10/20/tips-tricks-techniques-you-should-know/</link>
		<comments>http://goldtwine.wordpress.com/2009/10/20/tips-tricks-techniques-you-should-know/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 13:46:05 +0000</pubDate>
		<dc:creator>Subrato Paul</dc:creator>
				<category><![CDATA[Internet Trends]]></category>
		<category><![CDATA[Tips, Tricks, Techniques]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[tactics]]></category>
		<category><![CDATA[techniques]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[trends]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://goldtwine.wordpress.com/?p=126</guid>
		<description><![CDATA[Welcome to Tips, Tricks, Techniques section of goldenTwine blog The Internet is certainly the most valuable source of information. The Internet is used by over 800 million people in all walks of life everyday. Whether you are only a netizen, or an online community builder, or a blogger, or a web designer and developer, you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=126&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2 style="color:#0183ac;">Welcome to Tips, Tricks, Techniques section of goldenTwine blog</h2>
<p>The Internet is certainly the most valuable source of information. The Internet is used by over 800 million people in all walks of life everyday. Whether you are only a netizen, or an online community builder, or a blogger, or a web designer and developer, you always look for <em>tips, tricks, tactics, tools, trends and techniques</em> to improve your online environment and get the most out of Internet. Obviously, one article is simply not enough. In this <strong>Tips, Tricks, Techniques</strong> series we will have many posts not only from us, but also from Internet experts, and our esteem readers. Some of these tips, tricks and techniques you are bound to use as a web user or a web developer. This series would help especially those who would sometimes wish that they could also do what someone else has done elsewhere!</p>
<h2 style="color:#0183ac;">Tips, Tricks, Techniques</h2>
<p><a href="http://wp.me/pEzXT-28" target="_blank">Let’s Get Social – Social Bookmarking Tool</a></p>
<p>and much more…</p>
<h2 style="color:#0183ac;">Coming up…</h2>
<p>How could you make your passwords strong yet remember them all without jotting down on a notebook?</p>
<p>Are you a web designer? Check out if you knew these CSS tips and tricks!</p>
<p>Are your security questions and answers always secured? How could you make them more secured!</p>
<h2 style="color:#0183ac;">Would you like to contribute…</h2>
<p>We welcome your contribution. You may offer any <em>tips, tricks and techniques</em> that you would like to share with your fellow netizens.</p>
<p>Click here to submit your article:<br /><strong><a href="http://www.goldenTwine.com/gbl/frm/frmblgart.htm" target="_blank">Article Submission Form</a></strong></p>
<div style="width:468px;height:100px;font-weight:normal;font-size:10px;color:#807970;background:#eff9fe;border:1px solid #c8c8c8;border-top:2px solid #ced8e2;margin-top:5px;margin-bottom:5px;padding:5px;"><a href="http://www.goldenTwine.com/gblcom.htm" target="_blank"><img src="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg?w=64&#038;h=64" style="float:left;display:inline;background-color:#fff;border:1px solid #ccc;margin:0 5px 2px 0;padding:4px;" alt="Subrato Paul" title="" width="64" height="64" class="size-full wp-image-93" /></a><strong>Author:</strong> Subrato Paul lives in Kolkata, India. He’s the owner of <a href="http://www.goldenTwine.com/" target="_blank">GoldenTwine Informatics</a>, which he founded in 2003. He is a website designer, Internet marketer, and provides social networking and bookmarking services. He writes in his official blog and as a guest writer about Internet trends, computer issues, online marketing, website design and development, and his website&#8230;</p>
<p style="text-align:center;margin-top:5px;" class="getsocial"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2003.png?w=480" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pEzXT-22" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2013.png?w=480" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwp.me%2FpEzXT-22&amp;title=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2023.png?w=480" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpEzXT-22&amp;title=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2033.png?w=480" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-22&amp;title=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2043.png?w=480" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpEzXT-22&amp;title=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2053.png?w=480" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=http%3A%2F%2Fwp.me%2FpEzXT-22&amp;Title=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2063.png?w=480" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know+%40+http%3A%2F%2Fwp.me%2FpEzXT-22" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2073.png?w=480" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http://wp.me/pEzXT-22" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2083.png?w=480" alt="Add to Technorati" /></a><a title="Add to Yahoo Buzz" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwp.me%2FpEzXT-22&amp;headline=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2093.png?w=480" alt="Add to Yahoo Buzz" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpEzXT-22&amp;h=Tips%2C%20Tricks%2C%20Techniques%20You%20Should%20Know" rel="nofollow" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2103.png?w=480" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/08/gs2113.png?w=480" /></p>
</div>
<p><strong>Follow goldenTwine</strong><br />Join the social networking revolution, follow us on <a href="http://twitter.com/goldenTwineCom" target="_blank">twitter</a> and <a href="http://www.facebook.com/goldenTwine" target="_blank">Facebook</a>!</p>
<p><strong>Did you like this article?</strong><br /> If you&#8217;re new to goldenTwine blog, you may want to<br /><a href="http://goldTwine.wordpress.com/feed/" target="_blank">subscribe to our RSS feed</a> | <a href="http://wp.me/pEzXT-22" target="_blank">Permalink</a>.<br />Thanks for visiting!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/goldtwine.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/goldtwine.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/goldtwine.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/goldtwine.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/goldtwine.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/goldtwine.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/goldtwine.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/goldtwine.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/goldtwine.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/goldtwine.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/goldtwine.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/goldtwine.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/goldtwine.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/goldtwine.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=goldtwine.wordpress.com&amp;blog=9671373&amp;post=126&amp;subd=goldtwine&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://goldtwine.wordpress.com/2009/10/20/tips-tricks-techniques-you-should-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/00e09eae3d57acd15ed7338053e604a8?s=96&#38;d=http%3A%2F%2Fs0.wp.com%2Fi%2Fmu.gif&#38;r=G" medium="image">
			<media:title type="html">goldTwine</media:title>
		</media:content>

		<media:content url="http://goldtwine.files.wordpress.com/2009/10/imgsp641.jpg" medium="image">
			<media:title type="html">Subrato Paul</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2003.png" medium="image" />

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2013.png" medium="image">
			<media:title type="html">Add to Facebook</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2023.png" medium="image">
			<media:title type="html">Add to Digg</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2033.png" medium="image">
			<media:title type="html">Add to Del.icio.us</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2043.png" medium="image">
			<media:title type="html">Add to Stumbleupon</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2053.png" medium="image">
			<media:title type="html">Add to Reddit</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2063.png" medium="image">
			<media:title type="html">Add to Blinklist</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2073.png" medium="image">
			<media:title type="html">Add to Twitter</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2083.png" medium="image">
			<media:title type="html">Add to Technorati</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2093.png" medium="image">
			<media:title type="html">Add to Yahoo Buzz</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2103.png" medium="image">
			<media:title type="html">Add to Newsvine</media:title>
		</media:content>

		<media:content url="http://getsocialserver.files.wordpress.com/2009/08/gs2113.png" medium="image" />
	</item>
	</channel>
</rss>
