<?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>TutorDaddyTraining.com &#187; html coding</title>
	<atom:link href="http://tutordaddytraining.com/tag/html-coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutordaddytraining.com</link>
	<description>Training &#38; Resources For Internet Marketers</description>
	<lastBuildDate>Sat, 28 Nov 2009 01:45:38 +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>Basic HTML Coding</title>
		<link>http://tutordaddytraining.com/basic-html-coding/</link>
		<comments>http://tutordaddytraining.com/basic-html-coding/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 00:54:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web Site Design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html coding]]></category>
		<category><![CDATA[html terms]]></category>

		<guid isPermaLink="false">http://tutordaddytraining.com/?p=80</guid>
		<description><![CDATA[This is meant to be an introduction to some of the very basic tags that you might use in creating or editing an HTML web page. If you become familiar with these basic tags, you will be able to view and edit some of the tags that make up the HTML code on your web [...]]]></description>
			<content:encoded><![CDATA[<p>This is meant to be an introduction to some of the very basic<br />
tags that you might use in creating or editing an HTML web<br />
page. If you become familiar with these basic tags, you<br />
will be able to view and edit some of the tags that make up<br />
the HTML code on your web pages.</p>
<p>An HTML document consists of text and tags. Text goes between<br />
the tags that specify how this text will look on the web<br />
page. For example, if you put the word &#8220;Text&#8221; between &lt;B&gt;<br />
and &lt;/B&gt; tags, it will look bold.</p>
<p>Other text formatting tags include:<br />
&lt;I&gt;Your Text&lt;/I&gt; (Italics )<br />
&lt;U&gt;Your Text&lt;/U&gt; (Underlined)<br />
&lt;H1&gt;Your Text&lt;/H1&gt; (Large size heading)<br />
There are others for formatting text, but these are the most<br />
used ones.</p>
<p>The font tags, &lt;FONT&gt;Some Text&lt;/FONT&gt;, allow you to set sizes, face, and colors of the text that is inside the tags. For instance, &lt;FONT size=&#8221;3&#8243; color=&#8221;red&#8221; face=&#8221;tahoma&#8221;&gt;My<br />
Text&lt;/FONT&gt;, will make &#8220;My Text&#8221; size 3, Tahoma, and red color. You can also specify color in hexadecimal code, which allows you to specify an exact color. Take a look at <a href="http://www.december.com/html/spec/colorchips.html">http://www.december.com/html/spec/colorchips.html</a> to get the hex code for a lot of different shades of colors.</p>
<p>In addition to formatting tags, there are HTML tags that define a document structure. Some of them are : &lt;HTML&gt;..&lt;/HTML&gt; (signifies the start and the end of an HTML document) &lt;HEAD&gt;&#8230;&lt;/HEAD&gt; (document header contains title, author, keywords and description)<br />
&lt;BODY&gt;&#8230;&lt;/BODY&gt; (contains all the objects of the document, such as text, links and pictures)</p>
<p>There are also tags that create special objects:<br />
&lt;TABLE&gt;&#8230;&lt;/TABLE&gt; (creates a table on your web page)<br />
&lt;HR&gt; (makes a horizontal line)</p>
<p>Most tags consist of two parts &#8211; opening and closing. An exception here is the &lt;HR&gt; tag. A few others don&#8217;t need to be closed either:<br />
&lt;P&gt; (new paragraph) and &lt;BR&gt; (new line, or break)</p>
<p>Many tags can contain extra information about them (attributes). For example, &lt;BODY&gt; tag can also specify a background color of the page like this:<br />
&lt;BODY BGCOLOR=&#8221;PINK&#8221;&gt;<br />
A &lt;TABLE&gt; tag can also specify width like this:<br />
&lt;TABLE WIDTH=80%&gt;</p>
<p>This tag inserts a graphic into your web page: &lt;img src=&#8221;http:<br />
//www.mywebsite.com/headerlogo.gif&gt;</p>
<p>This tag makes a link to another web page: &lt;A HREF=&#8221;http://www.CheapMembershipSite.com/Mall&#8221;>http://www.CheapMembershipSite.com/Mall&lt;/a&gt;.<br />
To make the link open in a new browser window, add &#8220;target=<br />
&#8220;_blank&#8221;, like this:<br />
&lt;A HREF=&#8221;http://www.CheapmembershipSite.com/Mall&#8221; target=<br />
&#8220;_blank&#8221;&gt;</p>
<p>This tag: &lt;a href=&#8221;http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=spoteet&#8221;<br />
target=_blank&gt;Hostgator Web Hosting&lt;/A&gt;, will create a<br />
link that opens in a new window, and the text &#8220;Hostgator Web Hosting&#8221; would show on your web page as a clickable link.</p>
<p>How to place an image and text side-by-side, to give your web page a more balanced look, and to make use of all white space:</p>
<p>Recall we talked about the &lt;IMG SRC=&#8230;&gt; tag? Simply put an align=left or align=right inside it like this: &lt;img src=myimage.gif align=left width=100 height=200&gt;</p>
<p>Right after the image tag start typing your text. The graphic will automatically be displayed to the left of text. You could create a table and put a picture and text in two separate columns, but this is much faster to do and if your text is long enough it will wrap around the graphic which can&#8217;t be achieved using a table.<br />
If the graphic is too close to the text, you may adjust it by adding two more attributes to the tag &#8211; vertical space and horizontal space, like this: &lt;img src=ebay.gif align=left hspace=5 vspace=5 width=100 height=200&gt;</p>
<p>Well, that&#8217;s enough for now. Stay tuned for more HTML tips and tricks.</p>
<p>Lewis Poteet</p>
]]></content:encoded>
			<wfw:commentRss>http://tutordaddytraining.com/basic-html-coding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
