<?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>How To Make A Website &#187; HTML Tips</title>
	<atom:link href="http://blog.websitetoad.com/category/html-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.websitetoad.com</link>
	<description>Free Website Tutorials Provided By WebsiteToad.com</description>
	<lastBuildDate>Tue, 01 Feb 2011 21:00:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Making Hyperlinks Open In A New Window</title>
		<link>http://blog.websitetoad.com/making-hyperlinks-open-in-a-new-window/</link>
		<comments>http://blog.websitetoad.com/making-hyperlinks-open-in-a-new-window/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 09:00:01 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[HTML Tips]]></category>
		<category><![CDATA[hyperlinks]]></category>
		<category><![CDATA[links]]></category>

		<guid isPermaLink="false">http://websitespotblog.com/?p=29</guid>
		<description><![CDATA[I was doing some research on topics that visitors were searching for on my blog and at www.WebsiteToad.com and found that quite a few people are looking for a way to get hyperlinks to open in a new window. This is actually a very simple snippet of HTML code. A hyper link allows you to [...]]]></description>
			<content:encoded><![CDATA[<p>I was doing some research on topics that visitors were searching for on my blog and at <a title="make your own web site" href="http://www.websitetoad.com" target="_blank">www.WebsiteToad.com</a> and found that quite a few people are looking  for a way to get hyperlinks to open in a new window.</p>
<p>This is actually a very simple snippet of HTML code. A hyper link allows you to create a link from a webpage to another webpage in your website or to a completely different website.</p>
<h2>Basic Hyperlink</h2>
<p>The code to use is:</p>
<p>&lt;a href=&#8221;http://www.websitespot.com&#8221;&gt;Domain Name Registration&lt;/a&gt;</p>
<p>The link would appear as:  			 			 			<a href="http://www.websitespot.com/">Domain Name Registration</a></p>
<h2>Creating Hyperlinks To Open In A New Window</h2>
<p>If you create a link but would like to open a new browser window  			once it&#8217;s clicked you can simply add a little more code to  			accomplish this. I&#8217;ve highlighted the additional code below.</p>
<p>&lt;a  			<strong>target=&#8221;_blank&#8221; </strong>href=&#8221;http://www.websitespot.com&#8221;&gt;Domain Name  			Registration&lt;/a&gt;</p>
<p>The link would appear as 			<a href="http://www.websitespot.com/" target="_blank">Domain Name  			Registration</a> but would open a new window when clicked.</p>
<p>That&#8217;s it, if you&#8217;re using a WYSIWYG editor such as FrontPage or Dreamweaver you probably won&#8217;t need this know this code because you can simply click a button that tells the hyperlink to open in a new window but it certainly doesn&#8217;t hurt to know.</p>
<p>Best regards,<br />
David Lalumendre<br />
<a href="http://www.websitetoad.com/">www.WebsiteToad.com</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.websitetoad.com%2Fmaking-hyperlinks-open-in-a-new-window%2F';
  addthis_title  = 'Making+Hyperlinks+Open+In+A+New+Window';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitetoad.com/making-hyperlinks-open-in-a-new-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Make A Bullet Point In HTML</title>
		<link>http://blog.websitetoad.com/how-to-make-a-bullet-point-in-html/</link>
		<comments>http://blog.websitetoad.com/how-to-make-a-bullet-point-in-html/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 10:09:39 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[HTML Tips]]></category>
		<category><![CDATA[bullet point]]></category>
		<category><![CDATA[how to make]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html code]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.websitespotblog.com/?p=42</guid>
		<description><![CDATA[Here&#8217;s a quick HTML coding tip that I thought you may be interested in. By the way, you can find more information on basic HTML codes at www.WebsiteToad.com. Inserting Bullet Points Bullet points are great for separating a list in an easy to read format. The bullet point tag is as follows: &#60;ul&#62; &#60;li&#62; Item [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick HTML coding tip that I thought you may be interested in. By the way, you can find more information on basic <a href="http://websitetoad.com/html-basic-code.htm">HTML codes</a> at www.WebsiteToad.com.</p>
<h2>Inserting Bullet Points</h2>
<p>Bullet points are great for  			separating a list in an easy to read format. The bullet point tag is  			as follows:</p>
<p>&lt;ul&gt;<br />
&lt;li&gt; Item 1 &lt;/li&gt;<br />
&lt;li&gt; Item 2 &lt;/li&gt;<br />
&lt;li&gt; Item 3 &lt;/li&gt;<br />
&lt;/ul&gt;</p>
<p>The code would appear as:</p>
<ul>
<li> Item 1</li>
<li> Item 2</li>
<li> Item 3</li>
</ul>
<h2>Inserting Circle Bullet Points</h2>
<p>Bullet points are great for  			separating a list in an easy to read format. The bullet point tag is  			as follows:</p>
<p>&lt;ul type=&#8221;circle&#8221;&gt;<br />
&lt;li&gt; Item 1 &lt;/li&gt;<br />
&lt;li&gt; Item 2 &lt;/li&gt;<br />
&lt;li&gt; Item 3 &lt;/li&gt;<br />
&lt;/ul&gt;</p>
<p>The code would appear as:</p>
<ul type="circle">
<li> Item 1</li>
<li> Item 2</li>
<li> Item 3</li>
</ul>
<p>I don&#8217;t know if this was anything that you were losing sleep over but I had to create some bullets and figured I&#8217;d pass the information online. Hope you&#8217;re having a good one!</p>
<p>Best regards,<br />
David Lalumendre<br />
<a href="http://www.websitetoad.com/">www.WebsiteToad.com</a></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fblog.websitetoad.com%2Fhow-to-make-a-bullet-point-in-html%2F';
  addthis_title  = 'How+To+Make+A+Bullet+Point+In+HTML';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitetoad.com/how-to-make-a-bullet-point-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

