<?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>Internet Market SEO &#187; HTML Code Help</title>
	<atom:link href="http://internetmarketseo.com/category/html-code-help/feed/" rel="self" type="application/rss+xml" />
	<link>http://internetmarketseo.com</link>
	<description>Internet Marketing and SEO Explained</description>
	<lastBuildDate>Mon, 11 Jan 2010 21:30:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML Codes and Tips for Internet Marketing-Open Links in New Window,Change Link Color, Etc.</title>
		<link>http://internetmarketseo.com/html-codes-and-tips-for-internet-marketing-open-links-in-new-window-change-link-color/</link>
		<comments>http://internetmarketseo.com/html-codes-and-tips-for-internet-marketing-open-links-in-new-window-change-link-color/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 01:53:53 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[HTML Code Help]]></category>
		<category><![CDATA[how to highlight word html]]></category>
		<category><![CDATA[how to make link different color html]]></category>
		<category><![CDATA[how to make link open in new window]]></category>
		<category><![CDATA[how to make nofollow link]]></category>
		<category><![CDATA[html help]]></category>
		<category><![CDATA[html tips]]></category>

		<guid isPermaLink="false">http://internetmarketseo.com/?p=27</guid>
		<description><![CDATA[When doing Internet marketing it is very useful to familiarize yourself with HTML code to help your site look and function better.  I will go over some questions I often get and give you the answers.
How do I make a link open up in a new window or tab?
This can be done for individual links [...]]]></description>
			<content:encoded><![CDATA[<p>When doing Internet marketing it is very useful to familiarize yourself with HTML code to help your site look and function better.  I will go over some questions I often get and give you the answers.</p>
<p><strong>How do I make a link open up in a new window or tab?</strong></p>
<blockquote><p>This can be done for individual links by adding html to the link     <span style="color: #ff6600;">&lt;a href=&#8221;http://whateveryoursiteis.com&#8221; &#8220;<span style="color: #800080;">target=&#8221;_blank&#8221;</span>&gt;Keyword you want&lt;/a&gt;</span></p></blockquote>
<blockquote><p>The <span style="color: #993366;">target=&#8221;_blank&#8221;</span> is what makes it open in a new window.</p></blockquote>
<p><strong>How do I make all of my links open in a new window?</strong></p>
<blockquote><p>You use an HTML code and paste it in your header before the /header tag.</p></blockquote>
<blockquote><p>Here is the code</p></blockquote>
<blockquote><p><span style="color: #ff6600;">&lt;script type=&#8221;text/javascript&#8221;&gt;</span></p></blockquote>
<blockquote><p><span style="color: #ff6600;">jQuery(&#8220;a[href^='http:']&#8220;).not(&#8220;[href*='</span><span style="color: #993366;">mydomain.com</span><span style="color: #ff6600;">']&#8220;).attr(&#8216;target&#8217;,'_blank&#8217;);</span></p></blockquote>
<blockquote><p><span style="color: #ff6600;">&lt;/script&gt; </span></p></blockquote>
<blockquote><p>You will then put the name of your domain where it says <span style="color: #993366;">mydomain.com</span> and then all links on your page will open up in a different tab/window.</p></blockquote>
<p><strong>How do I change the color of Links?</strong></p>
<blockquote><p>If you have tried to make a linked word a different color in a Wordpress blog you have probably noticed that it won&#8217;t work.  You have use HTML to make the text the color you want it.</p></blockquote>
<blockquote><p><span style="color: #ff6600;">&lt;font color=&#8221;blue&#8221;&gt;<span style="color: #0000ff;">I&#8217;m blue!</span>&lt;/font&gt; </span></p></blockquote>
<p><strong><span style="color: #ff6600;"><span style="color: #000000;">How do I make my adsense go the left or right with the text around it? </span></span></strong></p>
<blockquote><p><span style="color: #ff6600;">&lt;div style=&#8221;float:right;&#8221;&gt;ADSENSE CODE&lt;/div&gt;</span> Flushes the object right.  Where it says &#8216;ADSENSE CODE&#8217; you can put anything, eg. a pictures html.</p></blockquote>
<blockquote><p><span style="color: #ff6600;">&lt;div style=&#8221;float:left;&#8221;&gt;ADSENSE CODE&lt;/div&gt;</span> Flushes the object left.</p></blockquote>
<p><strong>How do I make words look highlighted?  How do I make a yellow or different color background for words?</strong></p>
<blockquote><p><span style="color: #ff6600;">&lt;span style=&#8221;background:#FFFF00&#8243;&gt;Yellow background&lt;/span&gt;</span> Looks like <span style="background: #FFFF00;">Yellow background.</span></p></blockquote>
<p><strong>How do I make text clickable?  How do I make a link?</strong></p>
<blockquote><p>The easiest way is to use <span style="color: #ff6600;">&lt;a href=&#8221;http://yoursite.com&#8221;&gt;<span style="color: #ff9900;">click here</span>&lt;/a&gt;</span> Put your keyword in the place of &#8220;<span style="color: #ff9900;">Click Here</span>&#8220;</p></blockquote>
<blockquote><p>Some sites (like wikipedia) won&#8217;t allow the normal &lt;A HREF link so you have to use <span style="color: #ff6600;">[url=http://www.mysite.com]Anchor Text[/url]</span> or  <span style="color: #ff6600;">[link]http://www.yoursite.com[/link]</span></p></blockquote>
<p><strong>How do I make a NoFollow link?</strong></p>
<blockquote><p>A nofollow link is used when you want people to visit another site from yours but you don&#8217;t want to give that site any link juice.  This is normal when linking to a product site when you are the affiliate.</p></blockquote>
<blockquote><p><span style="color: #ff6600;">&lt;a href=&#8221;http://nameofsiteyouDon&#8217;tWanttoHelp.com/&#8221; target=&#8221;_top&#8221;</span> <span style="color: #339966;">rel=&#8221;nofollow&#8221;</span><span style="color: #ff6600;">&gt;Click Here&lt;/a&gt;</span></p></blockquote>
<p><strong>Keyboard Shortcuts</strong></p>
<p>ctrl + V = Paste</p>
<p>ctrl + C = Copy</p>
<p>For Firefox ctrl + T = Open new tab</p>
<p>Hold down the Ctrl button when you click any link to open it in a new window.</p>]]></content:encoded>
			<wfw:commentRss>http://internetmarketseo.com/html-codes-and-tips-for-internet-marketing-open-links-in-new-window-change-link-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
