<?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>keith.kg &#187; HTML</title>
	<atom:link href="http://keith.kg/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://keith.kg</link>
	<description>Keith Greer Web Development &#38; Design</description>
	<lastBuildDate>Mon, 16 Aug 2010 15:35:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>HTML Anchor</title>
		<link>http://keith.kg/html/2009/10/html-anchor/</link>
		<comments>http://keith.kg/html/2009/10/html-anchor/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 21:30:15 +0000</pubDate>
		<dc:creator>Keith Greer</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://keithgreer.eu/blog/?p=43</guid>
		<description><![CDATA[The Anchor has two important functions in HTML. First it is the main method for interlinking HTML documents and non-HTML media using the href attribute. It can also be used to jump to a location within a HTML document using the id attribute. ?View Code HTML1 &#38;lt;a href=&#34;http://www.bbc.co.uk&#34;&#38;gt;BBC Online&#38;lt;/a&#38;gt; BBC Online The hash # symbol [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Anchor has two important functions in HTML. First it is the main method for interlinking HTML documents and non-HTML media using the <em>href</em> attribute. It can also be used to jump to a location within a HTML document using the <em>id</em> attribute.</strong></p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p43code3'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p433"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p43code3"><pre class="html" style="font-family:monospace;">&amp;lt;a href=&quot;http://www.bbc.co.uk&quot;&amp;gt;BBC Online&amp;lt;/a&amp;gt;</pre></td></tr></table></div>

<blockquote><p><a href="http://www.bbc.co.uk">BBC Online</a></p></blockquote>
<p>The hash <em>#</em> symbol can be used to jump to any element with an ID attribute. The link below will jump to to the top of the current page, which has an attribute <em>id=&#8221;header&#8221;</em>.</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p43code4'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p434"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p43code4"><pre class="html" style="font-family:monospace;">&amp;lt;a href=&quot;#header&quot;&amp;gt;Jump to Page Header&amp;lt;/a&amp;gt;</pre></td></tr></table></div>

<blockquote><p><a href="#header">Jump to Page Header</a></p></blockquote>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>27 March 2009 -- <a href="http://keith.kg/html/2009/03/linkrel-nofollow/" title="rel=&#8221;nofollow&#8221;">rel=&#8221;nofollow&#8221;</a> (0)</li><li>2 October 2009 -- <a href="http://keith.kg/html/2009/10/html-iframes/" title="HTML iFrames">HTML iFrames</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://keith.kg/html/2009/10/html-anchor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML iFrames</title>
		<link>http://keith.kg/html/2009/10/html-iframes/</link>
		<comments>http://keith.kg/html/2009/10/html-iframes/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 15:36:00 +0000</pubDate>
		<dc:creator>Keith Greer</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[frame]]></category>
		<category><![CDATA[iframe]]></category>

		<guid isPermaLink="false">http://keithgreer.eu/blog/?p=9</guid>
		<description><![CDATA[An iFrame is a HTML element which allows a HTML document to be embedded within another. It can be useful for including external content in your webpage without having it coded in your page. It’s worth noting that iFrames are distinct from standard Frames which are actually a special kind of HTML page consisting of [...]]]></description>
			<content:encoded><![CDATA[<p>An iFrame is a HTML element which allows a HTML document to be embedded within another.  It can be useful for including external content in your webpage without having it coded in your page.</p>
<p>It’s worth noting that iFrames are distinct from standard Frames which are actually a special kind of HTML page consisting of several external documents. Unlike a standard frame, an iFrame is embedded within the page, just like an image…</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-10" title="frameset-vs-iframes" src="http://keithgreer.eu/blog/wp-content/uploads/2009/10/frameset-vs-iframes.png" alt="frameset-vs-iframes" width="428" height="263" /></p>
<p>As the page is scrolled the iFrame will move up and down along with the rest of the page content. However, the contents of the iFrame is completely independent from the surrounding page and will not in itself be effected by it.  iFrames are very easy to construct….</p>
<pre>
<pre drsyntax="lang:html;compress:on;lineNumbers:on">&lt;iframe src="page.html" width="200px" height="300px"&gt;
    This text will appear if the user’s browser doesn’t support the use of iFrames.
&lt;/iframe&gt;</pre>
</pre>
<div>Basically all you need are the contained document (src), width and height. Of course the standard HTML attributes: id, class, title, style can be used to modify it. There are also some specific attributes to the iFrame tag:</div>
<div>
<ul>
<li>scrolling &#8211;  This may be set to any of three setting: “on” –  scrollbars appear, “off” – scrollbars never appear, and “auto” – the default scrollbars appear as they are needed.</li>
<li>marginwidth, marginheight – This can be used to set the distance between the frame border and the frame’s contents.</li>
</ul>
<p>Sorted.</p>
<p style="text-align: right;"><a title="Coleraine Web Design" href="http://keithgreer.eu/webdesign/coleraine">Web Design Coleraine</a></p>
</div>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>18 October 2009 -- <a href="http://keith.kg/html/2009/10/html-anchor/" title="HTML Anchor">HTML Anchor</a> (0)</li><li>27 March 2009 -- <a href="http://keith.kg/html/2009/03/linkrel-nofollow/" title="rel=&#8221;nofollow&#8221;">rel=&#8221;nofollow&#8221;</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://keith.kg/html/2009/10/html-iframes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rel=&#8221;nofollow&#8221;</title>
		<link>http://keith.kg/html/2009/03/linkrel-nofollow/</link>
		<comments>http://keith.kg/html/2009/03/linkrel-nofollow/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 23:05:05 +0000</pubDate>
		<dc:creator>Keith Greer</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://keithgreer.eu/blog/?p=62</guid>
		<description><![CDATA[The nofollow attribute is used to stop search engines using links to affect the ranking of pages in an index. The idea was originally developed by Google as a way to stop links being use to artificially inflating the ranking of a specific page. ?View Code HTML1 &#38;lt;a rel=&#34;nofollow&#34; href=&#34;http://www.spamsite.com/&#34;&#38;gt;discount drugs&#38;lt;/a&#38;gt; Most search engines will follow the links [...]]]></description>
			<content:encoded><![CDATA[<p>The nofollow attribute is used to stop search engines using links to affect the ranking of pages in an index. The idea was originally developed by Google as a way to stop links being use to artificially inflating the ranking of a specific page.</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p62code6'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p626"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p62code6"><pre class="html" style="font-family:monospace;">&amp;lt;a rel=&quot;nofollow&quot; href=&quot;http://www.spamsite.com/&quot;&amp;gt;discount drugs&amp;lt;/a&amp;gt;</pre></td></tr></table></div>

<p>Most search engines will follow the links but exclude them from their ranking calculations (Goole, Yahoo). Others leave the link without following it or using the links (MSN). Some search engines still don&#8217;t recognise the attribute (Ask) and use the link like any other.</p>
<p>The most common use of nofollow is on blogs where spammers can often post comments which contain links to various websites. Nofollow should be used when a link is unknown, when the editor cannot vouch for its authenticity. This is the case when a third party leaves a comment on a website.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>18 October 2009 -- <a href="http://keith.kg/html/2009/10/html-anchor/" title="HTML Anchor">HTML Anchor</a> (0)</li><li>2 October 2009 -- <a href="http://keith.kg/html/2009/10/html-iframes/" title="HTML iFrames">HTML iFrames</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://keith.kg/html/2009/03/linkrel-nofollow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
