<?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>Learn Programming Online &#187; HTML</title>
	<atom:link href="http://freeonlineprogrammingtutorials.com/category/html/feed" rel="self" type="application/rss+xml" />
	<link>http://freeonlineprogrammingtutorials.com</link>
	<description>- Become a Coding Freak Today!</description>
	<lastBuildDate>Tue, 31 Jan 2012 16:33:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Display Image in HTML</title>
		<link>http://freeonlineprogrammingtutorials.com/how-to-display-image-in-html</link>
		<comments>http://freeonlineprogrammingtutorials.com/how-to-display-image-in-html#comments</comments>
		<pubDate>Mon, 31 May 2010 06:47:11 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[How to Display Image in HTML]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=86</guid>
		<description><![CDATA[With HTML you can display images in a document; Here’s how: The Image Tag and the Src Attribute • In HTML, images are defined with the tag. • The tag is empty, which means that it contains attributes only and it has no closing tag. • To display an image on a page, you need [...]]]></description>
			<content:encoded><![CDATA[<p>With <a href="http://freeonlineprogrammingtutorials.com">HTML </a>you can display images in a document; Here’s how:<br />
<span id="more-86"></span></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p><strong>The Image Tag and the Src Attribute </strong><br />
<br />
•	In HTML, images are defined with the <img> tag.<br />
•	The <img> tag is empty, which means that it contains attributes only and it has no closing tag.<br />
•	To display an image on a page, you need to use the src attribute. Src stands for &#8220;source&#8221;. The value of the src attribute is the URL of the image you want to display on your page.<br />
•	The syntax of defining an image:<br />
•	<img src="url">The URL points to the location where the image is stored. An image named &#8220;boat.gif&#8221; located in the directory &#8220;images&#8221; on &#8220;www.w3schools.com&#8221; has the URL: http://www.w3schools.com/images/boat.gif.<br />
•	The browser puts the image where the image tag occurs in the document. If you put an image tag between two paragraphs, the browser shows the first paragraph, then the image, and then the second paragraph.<br />
<br />
<strong>The Alt Attribute </strong><br />
<br />
•	The alt attribute is used to define an &#8220;alternate text&#8221; for an image. The value of the alt attribute is an author-defined text:<br />
•	<img src="boat.gif" alt="Big Boat">The &#8220;alt&#8221; attribute tells the reader what he or she is missing on a page if the browser can&#8217;t load images. The browser will then display the alternate text instead of the image. It is a good practice to include the &#8220;alt&#8221; attribute for each image on a page, to improve the display and usefulness of your document for people who have text-only browsers. </p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/how-to-display-image-in-html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML Forms</title>
		<link>http://freeonlineprogrammingtutorials.com/html-forms</link>
		<comments>http://freeonlineprogrammingtutorials.com/html-forms#comments</comments>
		<pubDate>Mon, 31 May 2010 06:42:07 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML Forms]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=81</guid>
		<description><![CDATA[HTML Forms are used to select different kinds of user input. HTML Forms • A form is an area that can contain form elements. • Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form. • A form is defined [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://freeonlineprogrammingtutorials.com">HTML Forms</a> are used to select different kinds of user input.<br />
<br />
<strong>HTML Forms</strong><br />
<br />
•	A form is an area that can contain form elements.<br />
•	Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form.<br />
<span id="more-81"></span></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>•	A form is defined with the < form > tag.<br />
	< form ><br />
	< input ><br />
	< /input ><br />
	</form>
<p>
<strong>Input</strong><br />
<br />
•	The most used form tag is the < input > tag. The type of input is specified with the type attribute. The most commonly used input types are explained below.<br />
<br />
<strong>Text Fields</strong><br />
<br />
•	Text fields are used when you want the user to type letters, numbers, etc. in a form.<br />
•	< form > First name: < input type="text" name="firstname" > < br > Last name: < input type="text" name="lastname" > < /form >How it looks in a browser:<br />
•	First name:<br />
Last name: Note that the form itself is not visible. Also note that in most browsers, the width of the text field is 20 characters by default.<br />
<br />
<strong>Radio Buttons <a href="http://freeonlineprogrammingtutorials.com/categories/html">HTML Forms</a></strong><br />
<br />
•	Radio Buttons are used when you want the user to select one of a limited number of choices.</p>
<form>
< input type="radio" name="sex" value="male"> Male < br > < input type="radio" name="sex" value="female" > Female<br />
<br />
Checkboxes<br />
<!--more--><br />
Checkboxes are used when you want the user to select one or more options of a limited number of choices.<br />
  < form ><br />
  I have a bike:<br />
< input type="checkbox" name="vehicle" value="Bike" / > < br / ><br />
  I have a car:<br />
< input type="checkbox" name="vehicle" value="Car" / ><br />
 < br / ><br />
 I have an airplane: < input type="checkbox" name="vehicle" value="Airplane" / ><br />
< /form ></p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/html-forms/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Lists</title>
		<link>http://freeonlineprogrammingtutorials.com/html-lists</link>
		<comments>http://freeonlineprogrammingtutorials.com/html-lists#comments</comments>
		<pubDate>Mon, 31 May 2010 06:36:32 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML Lists]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=79</guid>
		<description><![CDATA[HTML supports ordered, unordered and definition lists. < strong >Unordered Lists< /strong > • An unordered list is a list of items. The list items are marked with bullets (typically small black circles). • An unordered list starts with the tag. Each list item starts with the < li > tag. < ul > < [...]]]></description>
			<content:encoded><![CDATA[<p> <a href="http://freeonlineprogrammingtutorials.com">HTML </a>supports ordered, unordered and definition lists.<br />
<br />
< strong >Unordered Lists< /strong ><br />
<br />
•	An unordered list is a list of items. The list items are marked with bullets (typically small black circles).<br />
•	An unordered list starts with the
<ul> tag. Each list item starts with the < li > tag.<br />
<more></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>	< ul ><br />
	< li >Coffee< /li ><br />
 	< li >Milk< /li ><br />
 	< /ul ><br />
Here is how it looks in a browser:<br />
•	Coffee<br />
•	Milk<br />
•	Inside a list item you can put paragraphs, line breaks, images, links, other lists, etc<br />
<br />
<strong>Ordered Lists</strong><br />
<br />
•	An ordered list is also a list of items. The list items are marked with numbers.<br />
•	An ordered list starts with the
<ol> tag. Each list item starts with the
<li> tag.<br />
•	< ol ><br />
•	< li >Coffee< /li ><br />
•	< li >Milk< /li ><br />
•	 < /ol ><br />
•	Here is how it looks in a browser:<br />
•	Coffee<br />
•	Milk<br />
•	Inside a list item you can put paragraphs, line breaks, images, links, other lists, etc.<br />
<br />
<strong><a href="http://freeonlineprogrammingtutorials.com/categories/html">HTML</a> Definition Lists</strong><br />
<br />
•	A definition list is not a list of items. This is a list of terms and explanation of the terms.<br />
•	A definition list starts with the < dl > tag. Each definition-list term starts with the < dt > tag. Each definition-list definition starts with the < dd > tag.<br />
•	< dl > < dt >Coffee< /dt > < dd >Black hot drink< /dd > < dt >Milk< /dt > < dd >White cold drink< /dd > < /dl >Here is how it looks in a browser:<br />
•	Coffee<br />
–	Black hot drink<br />
•	Milk<br />
–	White cold drink<br />
•	Inside a definition-list definition (the < dd > tag) you can put paragraphs, line breaks, images, links, other lists, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/html-lists/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Tables</title>
		<link>http://freeonlineprogrammingtutorials.com/html-tables</link>
		<comments>http://freeonlineprogrammingtutorials.com/html-tables#comments</comments>
		<pubDate>Mon, 31 May 2010 06:31:04 +0000</pubDate>
		<dc:creator>WebProgrammer</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML Tables]]></category>

		<guid isPermaLink="false">http://freeonlineprogrammingtutorials.com/?p=77</guid>
		<description><![CDATA[Here&#8217;s the information about the HTML Tables Tables are defined with the < table > tag. A table is divided into rows (with the < tr > tag), and each row is divided into data cells (with the < td > tag). The letters td stands for &#8220;table data,&#8221; which is the content of a [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the information about the <a href="http://freeonlineprogrammingtutorials.com">HTML Tables</a><br />
Tables are defined with the < table > tag. A table is divided into rows (with the < tr > tag), and each row is divided into data cells (with the < td > tag). The letters td stands for &#8220;table data,&#8221; which is the content of a data cell. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc.<br />
 <span id="more-77"></span></p>
<div style="display:block;float:right;padding:5px;">
<script type="text/javascript"><!--
google_ad_client = "pub-9680100702980837";
/* big_sq_red */
google_ad_slot = "4937024846";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>
•	< table border="1" > < tr > < td >row 1, cell 1< /td > < td >row 1, cell 2< /td > < /tr > < tr > < td >row 2, cell 1< /td > < td >row 2, cell 2< /td > < /tr > < /table >How it looks in a browser:<br />
•	row 1, cell 1row 1, cell 2row 2, cell 1row 2, cell 2<br />
<br />
<strong>Tables and the Border Attribute</strong><br />
<br />
•	If you do not specify a border attribute the table will be displayed without any borders. Sometimes this can be useful, but most of the time, you want the borders to show.<br />
•	To display a table with borders, you will have to use the border attribute:<br />
•	< table border="1" > < tr > < td >Row 1, cell 1< /td > < td >Row 1, cell 2< /td > < /tr > < /table ><br />
<br />
<strong>Headings in a <a href="http://freeonlineprogrammingtutorials.com/categories/html">HTML Table</a></strong><br />
<br />
•	Headings in a table are defined with the < th > tag.<br />
< table border="1" > < tr > < th >Heading< /th > < th >Another Heading< /th > < /tr > < tr > < td >row 1, cell 1< /td > < td >row 1, cell 2< /td > < /tr > < tr > < td >row 2, cell 1< /td > < td >row 2, cell 2< /td > < /tr > < /table ><br />
How it looks in a browser:<br />
•	HeadingAnother Headingrow 1, cell 1row 1, cell 2row 2, cell 1row 2, cell 2</p>
]]></content:encoded>
			<wfw:commentRss>http://freeonlineprogrammingtutorials.com/html-tables/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

