<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Fri, 10 Feb 2012 20:53:03 GMT--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>intermediate HTML</title><link>http://www.attraction-marketing-techniques.com/intermediate-html/</link><description></description><lastBuildDate>Thu, 06 Jan 2011 20:49:31 +0000</lastBuildDate><copyright></copyright><language>en-US</language><generator>Squarespace Site Server v5.11.81 (http://www.squarespace.com/)</generator><item><title>Intermediate HTML - Learn How To Create Text Links, Lists, Basic Tables, And More</title><dc:creator>[James Rouse</dc:creator><pubDate>Mon, 24 Aug 2009 12:06:18 +0000</pubDate><link>http://www.attraction-marketing-techniques.com/intermediate-html/2009/8/24/intermediate-html-learn-how-to-create-text-links-lists-basic.html</link><guid isPermaLink="false">350039:4600382:4990197</guid><description><![CDATA[<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script><a href='http://feeds.rapidfeeds.com/27509/'><img src='http://feeds.rapidfeeds.com/chix_pix/feed1.png' border='0'></a>
<!-- AddThis Button BEGIN -->
<script type="text/javascript">var addthis_pub="jpnickethan";</script>
<a href="http://www.addthis.com/bookmark.php?v=20" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a><script type="text/javascript" src="http://s7.addthis.com/js/200/addthis_widget.js"></script><!-- AddThis Button END --><br>

<p><span style="margin: 5px; text-align: left; float: left; width: 120px;">

<script type="text/javascript"><!--
google_ad_client = "pub-4311956663813936";
/* 120x240, created 12/30/09 */
google_ad_slot = "5980937542";
google_ad_width = 120;
google_ad_height = 240;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>We covered some simple formatting in the HTML basics now lets move on to some intermediate html.
What we will cover in this tutorial are text links, adding color to text, creating a bulleted list, creating a numbered list, creating a nested list (bullets and numbers), basic tables, and creating a box around text.<br><br>

Not all content management systems are created equal so it all depends on which system you are using.
Having said that; the system that these codes will work for flawlessly is <a href=http://buildit.sitesell.com/James526.html target=”_blank”>Site build It</a>. Near the end of this page you will be left with a table of special HTML entities.<br><br>&nbsp&nbsp;

<b>Text links</b>
<br>
<br>
Links are your websites bread and butter. Without links there wouldn't be a web. Its critical to have well built links within your site sending your visitors to other pages on your site, off your site, and to your monetization model. There's nothing worse than to have a well written page only to find broken links. Your credibility will be damaged and the search engines could penalize you. <b>Always check your links before uploading your page(s).</b>
<br>
<ul><li><xmp><a href=”URL goes here”>text goes here</a></xmp>
The above text link is most commonly used to link to another page on your site.</li>
<li><xmp><a href=”URL goes here” target=”_blank”>text goes here</a></xmp>
The above text link would link to a page off your site but open in a new window. This way your site is still visible in your visitors browser. Its a good practice to use this link whenever you send your visitor off site</li>
<xmp><a href=”http://helpcurechildobesity.com” target=”_blank”>
check out my site</a></xmp>
And this is what you get: <a href=http://helpcurechildobesity.com target=”_blank”>check out my site</a>. <br><br>
Until you get comfortable with this coding you may want copy the following and paste it in to a document on your computer for later use. Then paste the full URL <b>between</b> the quotation marks, and type in your link text between the opening tag and the closing tag.<br>
<xmp><a href=”” ></a></xmp><style="text-align:right;"> <xmp><a href="" target="_blank"></a></xmp><br>
<b>Adding color to text</b><br><br>
Sometimes you may feel compelled to add color to text as an added emphasis. Adding color is an easy task.<br><br>
For example: Lets say you wanted to make the phrase intermediate HTML to appear as red. All you need to do is surround the phrase with <xmp><span style=”color:red;”>intermediate HTML</span>.</xmp> And this is what you get <span style="color:red;">intermediate HTML</span>.<br><br>
To use other colors just replace the word “red” with “yellow” or “green” or “orange”, and so forth.<br><br>
You can also use HTML colors otherwise known as HEX values such as this:<br>
<xmp><span style=”color:#B8860B;”>intermediate HTML</span></xmp>
Which looks like this:  <span style="color:#B8860B;">intermediate HTML</span>.<br><br>
<a href=http://html-color-codes.info/ target=”_blank”>Click here to see an assortment of HTML color codes and other useful information.</a><br><br>
<p><table align="left" border="1" cellpadding="5" cellspacing="0" width="400"> 
<tbody> 
<tr> 
<td bordercolor="#006633" bgcolor="#FFEC8B"> 
 Note: HEX colors <b>must</b> include the # ( pound sign) before the code characters (# B8860B). Browers have become more compliant to standards so forgetting the # in the HEX code will result in your color of choice not displaying.
</td> 
</tr> 
</tbody> 
</table></p><br><br><br><br><br><br>
<p>
<b>Creating Lists</b><br><br>
At one point or another most people will want to add a list to their blog or website. Some of the benefits to creating lists are..
<ul><li>display information in fewer words</li>
<li>key points or information is separated by a single line</li>
<li>lists are easier to read</li>
<li>lists are easier to scan...which is how most web users read information</li>
<li>numbered lists make it easier for readers to follow a set of instructions or steps</li></ul></p>
<b>Lists</b><br><br>
There are two types of lists ordered ( numbered) and unordered ( bulleted ).<br><br>
<ul><li>an e-mail list would be an unordered list, since all e-mail addresses are of equal importance.</li>
<li>An outline for a web page would be an ordered list, Page title, headline, and text have a specific order.</li>
<li>The steps to remove a tire on an automobile require an ordered list , you can't do step four before the preceding steps..For instance:
<ol><li>Park your vehicle on level ground</li>
<li>Carefully loosen the lugs nuts</li>
<li>Jack the vehicle off the ground </li>
<li>Remove the tire from the vehicle</li></ol>
<li>There is a third type of list: A nested list ( which I created above) which is a list within a list. Nested lists can be ordered, unordered, or both.</li></ul><br>
 <b>Unordered List</b><br><br>
The tags <xmp><ul> and </ul></xmp>are used to make an unordered list and the tags <xmp><li> and </li></xmp>separate each point with bullets. <br>
<xmp><ul><li>basic HTML</li>
<li>intermediate HTML</li>
<li>advanced HTML</li></ul></xmp>
which looks like this:<br>
<ul><li>basic HTML</li>
<li>intermediate HTML</li>
<li>advanced HTML</li></ul><br>
<b>Ordered Lists</b><br><br>
Ordered lists use the same format but different tags. The tag <xmp><ol> and </ol></xmp> are used instead of <xmp><ul> and </ul></xmp> The content can be the same. The opening and closing tags are all that needs to be changed to make an unordered list into an ordered list. <br>
<xmp><ol><li>basic HTML</li>
<li>intermediate HTML</li>
<li>advanced HTML</li></ol></xmp>
And this is what you get:<br>
<ol><li>basic HTML</li>
<li>intermediate HTML</li>
<li>advanced HTML</li></ol><br>
Nested lists have one list contained in another list. They can be all bullet points or combinations of numbers and bullets. Ordered lists also have options that you can choose for changing the levels. For instance: You can use upper or lower case Roman numerals or letters. <br><br>
Lets use the example above which is an unordered list containing an ordered list. The unordered list opening tag stays open until the end of the list. <br>
<xmp><ul><li>bullet point number one</li>
<li>bullet point number two</li>
<li>bullet point number three</li>
<ol><li>step number one</li>
<li>step number two</li>
<li>step number three</li></ol>
<li>bullet point number Four</li></ul></xmp>
As you can see the numbered list was opened and closed within the unordered list. <br>
<ul><li>bullet point number one</li>
<li>bullet point number two</li>
<li>bullet point number three</li>
<ol><li>step number one</li>
<li>step number two</li>
<li>step number three</li></ol>
<li>bullet point number Four</li></ul><br>
The next time you're building a web page or posting to your blog create a list to identify key points. The extra work will be worth the time and effort for the benefit of your visitors. <br>
If you don't have time or patience but still want a list for your website use the <a href=http://www.attraction-marketing-techniques.com/contact-me-form-attraction-ma/ target=”_blank”>contact me form</a> to discuss your options.<br><br> 
<b>Basic Tables</b><br><br>
Tables can be very simple or quite complex and confusing. Creating tables requires patience. The <xmp><table></xmp> tag is used to begin a table. Within a table element are the <xmp><tr></xmp> (table rows) and <xmp><td></xmp> (table columns or data) tags. Tables are a handy way to create a site's layout, but it does take some getting used to.<br><br>
<b>Basic Table</b><br>
The following code is about as basic as it gets for creating a table.<br>  
<xmp><table border="1">
<tr>
<td>Row 1 Column 1</td>
<td>Row 1 Column 2</td></tr>
<tr>
<td>Row 2 Column 1</td>
<td>Row 2 Column 2</td></tr>
</table></xmp><br>
Want more columns? Simply add another column between the open table row tag and the closing table row tag. Like this:<br>
<xmp><table border="1">
<tr>
<td>Row 1 Column 1</td>
<td>Row 1 Column 2</td>
<td>Row 1 Column 3</tr>
<tr>
<td>Row 2 Column 1</td>
<td>Row 2 Column 2</td>
<td>Row 2 Column 3</tr>
</table></xmp><br>
This is what it looks like.<br>
<table border="1">
<tr>
<td>Row 1 Column 1</td>
<td>Row 1 Column 2</td>
<td>Row 1 Column 3</tr>
<tr>
<td>Row 2 Column 1</td>
<td>Row 2 Column 2</td>
<td>Row 2 Column 3</tr>
</table><br>
With the <b>cellpadding</b> and <b>cellspacing</b> attributes you will be able to adjust the white space on your tables. Spacing defines the width of the border, while padding represents the distance between cell borders and the content within.<br>
<xmp><table border="1" cellspacing="10"
 
<tr>
<th>Column 1</th>
<th>Column 2</th></tr>
<tr><td>Row 1 Column 1</td>
<td>Row 1 Column 2</td></tr>
<tr><td>Row 2 Column 1</td>
<td>Row 2 Column 2</td></tr>
</table></xmp><br>
In this example we added a table heading tag <xmp><th></xmp><br>
<table border="1" cellspacing="10">
 
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
<tr><td>Row 1 Column 1</td><td>Row 1 Column 2</td></tr>
<tr><td>Row 2 Column 1</td><td>Row 2 Column 2</td></tr>
</table><br>
This last example was taken from my child obesity website <a href="http://www.helpcurechildobesity.com/childhood-obesity-statistics.html" target="_blank"> www.helpcurechildobesity.com</a> I added some color plus you may be able to visualize the cells better.<br>
 <xmp><table border=”1” bordercolor="blue">
<tr>
<th>BMI</th>
<th>category</th>
</tr>

<tr>
<td>below 18.5</td>
<td>underweight</td>
</tr>
<tr>
<td>18.5-24.9</td>
<td>normal weight</td>
</tr>
<tr>
<td>25.0-29.9</td>
<td>overweight</td>
</tr>
<tr>
<td>30.0 and above</td>
<td>obese</td>
</tr>
</table></xmp><br>
<table border=”1” bordercolor="blue">
<tr>
<th>BMI</th>
<th>category</th>
</tr>

<tr>
<td>below 18.5</td>
<td>underweight</td>
</tr>
<tr>
<td>18.5-24.9</td>
<td>normal weight</td>
</tr>
<tr>
<td>25.0-29.9</td>
<td>overweight</td>
</tr>
<tr>
<td>30.0 and above</td>
<td>obese</td>
</tr>
</table><br><br>
You may have noticed the tables are much more clean and crisper on my <a href=http://proof.sitesell.com/James526.html target=”_blank”>Site Build It</a> website. Exact same code but a different platform. So all content management systems are not created equal.<br><br>
<b>Creating A Box Around Text</b><br><br>
There are several very good reasons to enclose text within a box. As mentioned earlier in this tutorial it benefits your visitors online experience at your website. It stands out from the rest of your text and is easy to read. One popular use for a box around text is creating a link to your website for other webmasters to use on their website. All they have to do is copy and paste the text from within the box. I'm sure you will find a good use for this code<br>
<xmp><table align="left" border="1" cellpadding="5" cellspacing="0" width="200"> 
<tbody> 
<tr> 
<td bordercolor="#006633" bgcolor="#FFEC8B"> 
CONTENT GOES HERE 
</td> 
</tr> 
</tbody> 
</table></xmp>
Replace the width alignment and color to suit your needs, In this example bgcolor refers to back ground color. <br><br>
 <table align="left" border="1" cellpadding="5" cellspacing="0" width="400"> 
<tbody> 
<tr> 
<td bordercolor=#006633 bgcolor=#FFEC8B> 
<a href=http://www.attraction-marketing-techniques.com target=”_blank”>www.attraction-marketing-techniques.com</a>  Attraction marketing strategies and techniques for internet network marketers. Learn how to use social networking, articles marketing, and even build a blog or website to attract targeted prospects to your business or opportunity. 
</td> 
</tr> 
</tbody> 
</table><br><br><br><br><br><br><br>
Intermediate HTML is not difficult; it is more time consuming but you can do this.<br><br>
If you don't have time or patience but still want a table for your website use the <a href=http://www.attraction-marketing-techniques.com/contact-me-form-attraction-ma/ target=”_blank”>contact me form</a> to discuss your options. <br><br>
 
<b>Special Entities</b><br><br>
As promised here's a list of special entities.<br><br>
<TABLE border="1" class="bodytext" cellpadding="4" cellspacing="0" bordercolor="#EEEEEE" align="center"> 
<TR> 
<TD colspan="2" align="center" BGCOLOR="#DDDDDD"><strong>Character</strong></TD> 
<TD BGCOLOR="#DDDDDD"><strong><FONT COLOR="RED">HTML</FONT></strong></TD> 
<TD BGCOLOR="#DDDDDD"><strong>Description</strong></TD> 
<TD ROWSPAN="10" bgcolor="#dddddd">&nbsp;</TD> 
<TD colspan="2" align="center" BGCOLOR="#DDDDDD"><strong>Character</strong></TD> 
<TD BGCOLOR="#DDDDDD"><strong><FONT COLOR="RED">HTML</FONT></strong></TD> 
<TD BGCOLOR="#DDDDDD"><strong>Description</strong></TD> 
</TR> 
<TR> 

<TD align="center" colspan="2"><strong>&amp;</strong></TD> 
<TD><font color="red">&amp;amp;</font></TD> 
<TD>Ampersand</TD> 
<TD align="center" colspan="2">&nbsp;</TD> 
<TD><font color="red">&amp;nbsp;</font></TD> 
<TD>Blank Space</TD> 
</TR> 
<TR> 
<TD align="center" colspan="2"><strong>€</strong></TD> 
<TD><FONT color="FF0000">&amp;euro;</FONT></TD> 
<TD>Euro currency</TD> 

<TD align="center" colspan="2"><strong>&copy;</strong></TD> 
<TD><FONT color="FF0000">&amp;copy;</FONT></TD> 
<TD>Copyright</TD> 
</TR> 
 
<TR> 
<TD align="center" colspan="2"><strong>&pound;</strong></TD> 
<TD><FONT color="FF0000">&amp;pound;</FONT></TD> 
<TD>Pound currency</TD> 
<TD align="center" colspan="2"><strong>&reg;</strong></TD> 
<TD><FONT color="FF0000">&amp;reg;</FONT></TD> 
<TD>Registered</TD> 

</TR> 
 
<TR> 
<TD align="center" colspan="2"><strong>&yen;</strong></TD> 
<TD><FONT color="FF0000">&amp;yen;</FONT></TD> 
<TD>Yen currency</TD> 
<TD align="center" colspan="2"><strong>&trade;</strong></TD> 
<TD><FONT color="FF0000">&amp;trade;</FONT></TD> 
<TD>Trademark</TD> 
</TR> 
 
<TR> 
<TD align="center" colspan="2"><strong>&cent;</strong></TD> 
<TD><FONT color="FF0000">&amp;cent</FONT></TD> 

<TD>Cent</TD> 
<TD align="center" colspan="2"><strong>&gt;</strong></TD> 
<TD><font color="FF0000">&amp;gt;</font></TD> 
<TD>Greater than</TD> 
</TR> 
 
<TR> 
<TD align="center" colspan="2"> <strong>&deg;</strong></TD> 
<TD><FONT color="FF0000">&amp;deg;</FONT></TD> 
<TD>Degree</TD> 
<TD align="center" colspan="2"><strong>&lt;</strong></TD> 
<TD><font color="FF0000">&amp;lt;</font></TD> 

<TD>Less than</TD> 
</TR> 
 
<TR> 
<TD align="center" colspan="2"><strong>&radic;</strong></TD> 
<TD><font color="FF0000">&amp;radic;</font></TD> 
<TD>Check Mark</TD> 
<TD align="center" colspan="2"><strong>&ge;</strong></TD> 
<TD><font color="FF0000">&amp;ge;</font></TD> 
<TD>Greater than or equal to</TD> 
</TR> 
 
<TR> 
<TD align="center" colspan="2"><strong>&ldquo;</strong></TD> 

<TD><font color="red">&amp;ldquo;</font></TD> 
<TD>Open Curly Quotes</TD> 
<TD align="center" colspan="2"><strong>&le;</strong></TD> 
<TD><font color="FF0000">&amp;le;</font></TD> 
<TD>Less than or equal to</TD> 
</TR> 
 
<TR> 
<TD align="center" colspan="2"><strong>&rdquo;</strong></TD> 
<TD><font color="red">&amp;rdquo;</font></TD> 
<TD>Close Curly Quotes</TD> 
<TD align="center" colspan="2"><strong>&infin;</strong></TD> 

<TD><font color="FF0000">&amp;infin;</font></TD> 
<TD>Infinity</TD> 
</TR> 
</TABLE> 
<br><br>
<a href="http://networkmarketing.sitesell.com/James526.html " target="_blank">Success has a simple formula: do your best, and people may like it. Sam Ewing</a><br><br>
<a href=http://www.attraction-marketing-techniques.com/introduction-to-html-basics/2009/7/9/the-html-basics-learn-what-content-management-systems-dont-t.html
target="_blank">Return to "Introduction To HTML Basics" page from Intermediate HTML</a><br><br><center><small><a href=http://www.attraction-marketing-techniques.com/marketing-strategy-e-goods/2009/5/16/attraction-marketing-strategy.html>Home</a> | <a href=http://www.attraction-marketing-techniques.com/about-me/>About Me</a> | <a href=http://feeds.rapidfeeds.com/27509/>RSS</a> | <a href=http://www.attraction-marketing-techniques.com/link-to-my-blog/2009/8/5/link-to-my-blog-and-thank-you-for-sharing.html>Link To Me</a></small></center> <center><small>©2008-2011 Attraction Marketing Techniques - All Rights Reserved</small></center>]]></description><wfw:commentRss>http://www.attraction-marketing-techniques.com/intermediate-html/rss-comments-entry-4990197.xml</wfw:commentRss></item></channel></rss>
