<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Free PLR Ebook &#187; 2455</title>
	<atom:link href="http://www.freeplrebook.com/category/2455/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freeplrebook.com</link>
	<description>Free Private Label Rights Ebooks, Articles, cool staff!</description>
	<lastBuildDate>Fri, 03 Feb 2012 06:08:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>HTML Tips: Anatomy of an Affiliate Link</title>
		<link>http://www.freeplrebook.com/html-tips-anatomy-of-an-affiliate-link/</link>
		<comments>http://www.freeplrebook.com/html-tips-anatomy-of-an-affiliate-link/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 13:56:54 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[2455]]></category>

		<guid isPermaLink="false">http://www.freeplrebook.com/html-tips-anatomy-of-an-affiliate-link/</guid>
		<description><![CDATA[It&#8217;s a well known fact that I&#8217;m a Super Affiliate, and that I write HTML code in my sleep. But nothing I do in my work routine is rocket science. I barely even know how to work a VCR. (Yes, I said VCR.) I consider myself a &#8220;Lazy Affiliate&#8221;. So don&#8217;t worry &#8211; this is [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a well known fact that I&#8217;m a Super Affiliate, and that I write HTML code in my sleep. But nothing I do in my work routine is rocket science. I barely even know how to work a VCR. <em>(Yes, I said VCR.)</em> I consider myself a &#8220;Lazy Affiliate&#8221;. So don&#8217;t worry &#8211; this is going to be easy and fun. <img src='http://www.clicknewz.com/wp-includes/images/smilies/icon_wink.gif' alt="icon wink HTML Tips: Anatomy of an Affiliate Link" class='wp-smiley' title="HTML Tips: Anatomy of an Affiliate Link" />  Ready? Here we go&#8230; </p>
<p><img src="http://www.clicknewz.com/wp-content/uploads/2010/04/affiliate-link-code-1-e1270212613227.jpg" alt="affiliate link code 1 e1270212613227 HTML Tips: Anatomy of an Affiliate Link" width="480" height="186" class="aligncenter size-full wp-image-2306" title="HTML Tips: Anatomy of an Affiliate Link" /></p>
<p>Let&#8217;s back up and I&#8217;ll show you why, how and where I got this code&#8230;<br />
<span></span></p>
<p><strong>An affiliate link</strong> let&#8217;s you recommend a website or a product online, and earn commission for any referrals you send. It tracks the traffic, and action or sales they take on the site, and you get paid for that.</p>
<p>For example, if I <a href="http://www.clicknewz.com/2186/clicknewz-mail-dec2209/">tell you about a cool new photo canvas</a> I got online from CanvasPeople, and you decide to click on my link and get their Free Photo Canvas Offer yourself, I earn a $10 referral fee.</p>
<p>To get affiliate links, you sign up for affiliate networks or affiliate programs. </p>
<p>I like the Commission Junction network at CJ.com. You go to CJ.com, register and create an account, then sign in. You&#8217;ll go to Get Links and choose advertisers or product types you want to promote, and apply to their affiliate program. Once you&#8217;re approved, you&#8217;ll be able to get affiliate links to promote their products.</p>
<p>Here&#8217;s a video that shows exactly how I got the code that you see above:</p>
</p>
<p>It&#8217;s not as bad as it looks – I promise. </p>
<p>But if you&#8217;re new to this and you&#8217;re trying to <strong>share an affiliate link in an email, on Facebook or Twitter, or you&#8217;re trying to put it into a blog post</strong> or web page editor that was supposed to make creating web pages easy&#8230; you&#8217;ll be pulling your hair out. If you just copy &#38; paste that HTML Code, it won&#8217;t work. </p>
<p>You&#8217;ve probably discovered this already.</p>
<p>You need to know which part of the HTML Code to use when, for what –and why&#8230;</p>
<p><strong>Affiliate HTML 101</strong></p>
<p>Before we start, you&#8217;ll want to open and bookmark this link to a <a href="http://www.quackit.com/html/tags/" target="_blank">Complete List of HTML Tags</a>. You can refer back to that anytime you get confused, or want to look up a specific HTML element. </p>
<p>We&#8217;ll go back to the HTML code we looked at earlier for reference:</p>
<p><img src="http://www.clicknewz.com/wp-content/uploads/2010/04/affiliate-link-code-1-e1270212613227.jpg" alt="affiliate link code 1 e1270212613227 HTML Tips: Anatomy of an Affiliate Link" width="480" height="186" class="aligncenter size-full wp-image-2306" title="HTML Tips: Anatomy of an Affiliate Link" /></p>
<p>The <strong>A</strong> tag is used for creating a hyperlink, the <strong>href</strong> specifies the URL you&#8217;re linking to. So the <strong>A HREF</strong> part of the code above is referencing the actual affiliate link, which you see in quotes. </p>
<p>It requires a closing tag which you see at the end in red – that tells the browser where to stop the hyperlink. What you put in between those A tags is what you&#8217;re linking the URL to – whether it&#8217;s an image or text. </p>
<p><em>Note: this is not going to be color coded when you go to do this on your own LOL</em></p>
<p>The blue code starting on the third line is the image that I&#8217;m linking to. In this case it&#8217;s an affiliate banner image. <strong>IMG SRC</strong> means Image Source – or the source/URL of the image you want to make clickable. Your images have to reside somewhere on the web so people can see them. Once you upload them, they have their own URL – so the image source is the URL of the image. </p>
<p><strong>Target=_blank</strong> (in red on the 2nd line) tells the link to open in a new browser window. If you remove that part of the code, the link will then open in the same browser window. </p>
<p>The width, height, ALT and border tags are all optional. The <strong>ALT tag</strong> is for Alternate Text. If you&#8217;re visitor has images turned off, or they&#8217;re blind and their computer is reading the page to them, this is the alternate text that will be used. It also shows in most browsers when you mouse over the image.</p>
<p><strong>You can manipulate the HTML Code in various ways.</strong> You might want to link to text instead of a big banner ad. You would simply remove the image code, and put your text in it&#8217;s place. This is called Anchor Text, which is basically the <a href="http://dont-click-this-theres-no-link-here--seriously">clickable text</a> on a web page. You&#8217;ll use this to create a Text Link within a blog post or article. </p>
<p><strong>If you&#8217;re creating a web page or a blog post, and you&#8217;re not working in code &#8211; you&#8217;re using a WYSIWYG or Visual Editor instead &#8211; then you can&#8217;t paste in all that A HREF code stuff. </strong></p>
<p>You&#8217;ll have an icon or link in your editor that you click to add a hyperlink.</p>
<p>You highlight the text you want to link to, then click the linking option, and it asks you for the URL or affiliate link. That&#8217;s going to be everything within the quotes in the A HREF tag of your affiliate code. You&#8217;ll see it in black in our example code above – that&#8217;s your actual affiliate link. You can use that link in an email, on Twitter or Facebook, or any other place that you can&#8217;t use HTML code.</p>
<p>You can also switch into code mode (the HTML Editor) on most programs, WordPress included,  and paste in the HTML code. Then you can switch back and finish formatting your page/post in your visual editor. </p>
<p><strong>Don&#8217;t gloss over on me yet!</strong> <img src='http://www.clicknewz.com/wp-includes/images/smilies/icon_wink.gif' alt="icon wink HTML Tips: Anatomy of an Affiliate Link" class='wp-smiley' title="HTML Tips: Anatomy of an Affiliate Link" /> </p>
<p>I have another example to share with you. This time on creating affiliate links for products at Amazon.com. I&#8217;ll show you how to use better or larger images, and a live example of how great an Amazon affiliate link can really look if you know what you&#8217;re doing.</p>
<p>But I&#8217;ll save that for the next post, and we&#8217;ll talk about <em>deep linking</em> as well because that can really increase your conversion rates. Meaning&#8230; it will make you a lot more money. <img src='http://www.clicknewz.com/wp-includes/images/smilies/icon_biggrin.gif' alt="icon biggrin HTML Tips: Anatomy of an Affiliate Link" class='wp-smiley' title="HTML Tips: Anatomy of an Affiliate Link" /> </p>
<p>Check back for Part 2, or subscribe by email below so you don&#8217;t miss out. And while you&#8217;re waiting, get out there and share some affiliate links!</p>
<p>Best,<br />
<img src="http://www.clicknewz.com/img/sig.jpg" title="HTML Tips: Anatomy of an Affiliate Link" alt="sig HTML Tips: Anatomy of an Affiliate Link" /></p>
<p><strong>p.s.</strong> This is the part of Affiliate Marketing that gets left out of most ebooks and blog posts. If you want to learn the nitty-gritty how-to of becoming a successful affiliate, you should attend the <a href="http://www.nicheaffiliatemarketingsystems.com">Niche Affiliate Marketing Workshop</a> in Atlanta. I teach there twice a year, and it&#8217;s a great opportunity to learn hands-on!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/wp-clicknewz?a=gWfnY897MLQ:hlqm3EeGN0M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wp-clicknewz?i=gWfnY897MLQ:hlqm3EeGN0M:V_sGLiPBpWU" border="0" title="HTML Tips: Anatomy of an Affiliate Link" alt=" HTML Tips: Anatomy of an Affiliate Link" /></img></a> <a href="http://feeds.feedburner.com/~ff/wp-clicknewz?a=gWfnY897MLQ:hlqm3EeGN0M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/wp-clicknewz?i=gWfnY897MLQ:hlqm3EeGN0M:gIN9vFwOqvQ" border="0" title="HTML Tips: Anatomy of an Affiliate Link" alt=" HTML Tips: Anatomy of an Affiliate Link" /></img></a> <a href="http://feeds.feedburner.com/~ff/wp-clicknewz?a=gWfnY897MLQ:hlqm3EeGN0M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wp-clicknewz?i=gWfnY897MLQ:hlqm3EeGN0M:F7zBnMyn0Lo" border="0" title="HTML Tips: Anatomy of an Affiliate Link" alt=" HTML Tips: Anatomy of an Affiliate Link" /></img></a> <a href="http://feeds.feedburner.com/~ff/wp-clicknewz?a=gWfnY897MLQ:hlqm3EeGN0M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wp-clicknewz?d=yIl2AUoC8zA" border="0" title="HTML Tips: Anatomy of an Affiliate Link" alt=" HTML Tips: Anatomy of an Affiliate Link" /></img></a>
</div>
<p>Original post by <em><a href="http://feedproxy.google.com/~r/wp-clicknewz/~3/gWfnY897MLQ/" title="">Lynn Terry</a></em> and <em>software</em> by <a href="http://elliottback.com">Elliott Back</a></p>
<!-- Created with WP-Autoblog (http://elliottback.com) -->]]></content:encoded>
			<wfw:commentRss>http://www.freeplrebook.com/html-tips-anatomy-of-an-affiliate-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

