<?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>Make Basic Website &#187; basic html tags</title>
	<atom:link href="http://www.make-basic-website.com/tag/basic-html-tags/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.make-basic-website.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 26 Apr 2011 20:10:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Basic HTML Tags</title>
		<link>http://www.make-basic-website.com/basic-website/basic-html-tags/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=basic-html-tags</link>
		<comments>http://www.make-basic-website.com/basic-website/basic-html-tags/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 18:35:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basic Website]]></category>
		<category><![CDATA[basic html tags]]></category>
		<category><![CDATA[html tags]]></category>

		<guid isPermaLink="false">http://www.make-basic-website.com/?p=13</guid>
		<description><![CDATA[Formatting Tags - &#60;b&#62;bold&#60;/b&#62; - &#60;strong&#62;strong&#60;/strong&#62; - &#60;u&#62;underlined&#60;/ul&#62; - &#60;i&#62;italics&#60;/i&#62; - &#60;em&#62;emphasis&#60;/em&#62; - &#60;strike&#62;strike through&#60;/strike&#62; - &#60;center&#62;This centers text on the page&#60;/center&#62; - &#60;tt&#62;teletype text&#60;/tt&#62; (typewriter text) - &#60;blockquotes&#62;blockquotes&#60;/blockquotes&#62; Links - Basic Link &#60;a href=”url”&#62;link title&#60;/a&#62; (where ‘url’ is the page you want to link to and ‘link title’ is the word/s that you want [...]]]></description>
			<content:encoded><![CDATA[<h3>Formatting Tags</h3>
<p>- &lt;b&gt;<strong>bold</strong>&lt;/b&gt;<br />
- &lt;strong&gt;<strong>strong</strong>&lt;/strong&gt;<br />
- &lt;u&gt;<span style="text-decoration: underline;">underlined</span>&lt;/ul&gt;<br />
- &lt;i&gt;<em>italics</em>&lt;/i&gt;<br />
- &lt;em&gt;<em>emphasis</em>&lt;/em&gt;<br />
- &lt;strike&gt;<span style="text-decoration: line-through;">strike through</span>&lt;/strike&gt;<br />
- &lt;center&gt;<strong>This centers text on the page</strong>&lt;/center&gt;<br />
- &lt;tt&gt;<tt>teletype text</tt>&lt;/tt&gt; (typewriter text)<br />
- &lt;blockquotes&gt;<strong>blockquotes</strong>&lt;/blockquotes&gt;</p>
<h3>Links</h3>
<p>- <strong>Basic Link</strong> &lt;a href=”url”&gt;link title&lt;/a&gt; (where ‘url’ is the page you want to link to and ‘link title’ is the word/s that you want the link to say.<br />
- <strong>Email Link</strong> &lt;a href=”mailto:EMAIL”&gt;&lt;/a&gt; (where ‘EMAIL’ is the email address you want to be a link).</p>
<h3>Heading Tags (vary according to CSS)</h3>
<p>- &lt;h1&gt;<strong>An important heading</strong>&lt;/h1&gt;<br />
- &lt;h2&gt;<strong>A slightly less important heading</strong>&lt;/h2&gt;<br />
- &lt;h3&gt;<strong>A less important heading again</strong>&lt;/h3&gt;<br />
- &lt;h6&gt;<strong>The smallest heading</strong>&lt;/h6&gt;</p>
<h3>Font Tags</h3>
<p><span ><strong>- Font Size</strong> &#8211; &lt;font size=”x”&gt;text to change&lt;/font&gt; &#8211; change ‘x’ value to get different sizes. 1 is small and 7 is big.<br />
- <strong>Colors</strong> &#8211; &lt;font color=”#FF0000?&gt;I’m red!&lt;/font&gt;<br />
Font type &#8211; &lt;font face=”Arial”&gt;Hello there&lt;/font&gt; </span></p>
<h3>Image Tags</h3>
<p>- <strong>Basic Image tag</strong> &#8211; &lt;img src=”url”&gt; (where url = the url of the image you want to show)<br />
- <strong>Image with sizing</strong> &lt;img src=”url” width=”200? height=”150?&gt;<br />
- <strong>Align image left</strong> &#8211; &lt;img src=”name” align=left&gt; (substitute ‘left’ with ‘right’ to align it right)<br />
- <strong>Alt Tags</strong> &#8211; &lt;img src=”url” alt=”short description of image”&gt; (an alt tag tells the reader what they are missing if the image doesn’t load in their browser.<br />
- <strong>Image as a link</strong> &#8211; &lt;a href=”link url”&gt;&lt;img src=”url”&gt;&lt;/a&gt; (where ‘link url’ is the url of the page you want the image to link to and ‘url’ is the image location).<br />
- <strong>Image with border</strong> &#8211; &lt;img border=”1? src=”url”&gt; (the larger the number in the border “” the thicker the border)<br />
- <strong>Space Around Image</strong> &lt;img src=”url” hspace=10 vspace=10&gt; (hspace is the horizontal space and vspace is the verticle space. The numbers are the amount of pixels sounding the image)</p>
<h3>Unordered Lists (usually bullet point type lists) </h3>
<p>&lt;ul&gt;<br />
&lt;li&gt;the first list item&lt;/li&gt;<br />
&lt;li&gt;the second list item&lt;/li&gt;<br />
&lt;li&gt;the third list item&lt;/li&gt;<br />
&lt;/ul&gt;</p>
<h3>Ordered Lists (usually numbered lists)</h3>
<p>&lt;ol&gt;<br />
&lt;li&gt;the first list item&lt;/li&gt;<br />
&lt;li&gt;the second list item&lt;/li&gt;<br />
&lt;li&gt;the third list item&lt;/li&gt;<br />
&lt;/ol&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.make-basic-website.com/basic-website/basic-html-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

