<?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>The Blog Boat &#187; code</title>
	<atom:link href="http://theblogboat.com/portal/index.php/tag/code/feed" rel="self" type="application/rss+xml" />
	<link>http://theblogboat.com/portal</link>
	<description>Helping You Navigate Thru Bloggy Waters</description>
	<lastBuildDate>Wed, 10 Nov 2010 18:19:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basic HTML Code</title>
		<link>http://theblogboat.com/portal/index.php/basic-html-code</link>
		<comments>http://theblogboat.com/portal/index.php/basic-html-code#comments</comments>
		<pubDate>Wed, 17 Mar 2010 14:45:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Build Your Blog]]></category>
		<category><![CDATA[Design Options]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://theblogboat.com/portal/?p=29</guid>
		<description><![CDATA[You can use basic HTML code to do amazing things in your blog posts on and on your blog. Most blogging software offers and HTML option for side widgets or containers. Below are a few tags you can use and play around with&#8230; 
BOLD
ITALICIZED
CENTERED
BIG
STRIKE THROUGH
UNDERLINE
HORIZONTAL LINE

Ordered List (numbered)


List item 1
List item 2


Ordered List (alphabetical)


List item 1
List<a href="http://theblogboat.com/portal/index.php/basic-html-code">&#160;[>>> READ MORE].</a>]]></description>
			<content:encoded><![CDATA[<p>You can use basic HTML code to do amazing things in your blog posts on and on your blog. Most blogging software offers and HTML option for side widgets or containers. Below are a few tags you can use and play around with&#8230; </p>
<pre name="code" class="html"><b>BOLD</b>
<em>ITALICIZED</em>
<center>CENTERED</center>
<big>BIG</big>
<del>STRIKE THROUGH</del>
<u>UNDERLINE</u>
<hr />HORIZONTAL LINE</hr>
</pre>
<p>Ordered List (numbered)</p>
<pre name="code" class="html">
<ol>
<li>List item 1</li>
<li>List item 2</li>
</ol>
</pre>
<p>Ordered List (alphabetical)</p>
<pre name="code" class="html">
<ol type="a">
<li>List item 1</li>
<li>List item 2</li>
</ol>
</pre>
<p>Unordered List (bulleted)</p>
<pre name="code" class="html">
<ul>
<li>List item 1</li>
<li>List item 2</li>
</ul>
</pre>
<p>Most blogging software uses  Cascading Style Sheets to determine how the font will look throughout the site.  You will need to figure out what yours is, but once you do you can use the following command to make font in your posts look like font in your site.  You can create a post and enter one of the following codes and put your text in the middle and preview to see what each looks like.</p>
<pre name="code" class="html">
<h1>Heading 1 Example</h1>
<h2>Heading 2 Example</h2>
<h3>Heading 3 Example</h3>
<h4>Heading 4 Example</h4>
<h5>Heading 5 Example</h5>
<h6>Heading 6 Example</h6>
</pre>
<p>If you need to create a table you can use the code below and modify it&#8230;.</p>
<pre name="code" class="html">
<table border="2" cellpadding="2" cellspacing="2" width="100%">
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
</table>
</pre>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://theblogboat.com/portal/index.php/basic-html-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


