<?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>Vdiscussion &#187; XHTML</title>
	<atom:link href="http://vdiscussion.com/tag/xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://vdiscussion.com</link>
	<description>Vinoth Kumar&#039;s Discussion</description>
	<lastBuildDate>Wed, 09 Dec 2009 15:34:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Tags and Elements of HTML</title>
		<link>http://vdiscussion.com/tags-and-elements-of-html/</link>
		<comments>http://vdiscussion.com/tags-and-elements-of-html/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 15:57:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Elements of HTML]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tags of HTML]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=96</guid>
		<description><![CDATA[If you look at the first and last lines of the code for the last example, you will see pairs of angle brackets containing the letters &#60;html&#62;. The two brackets and all of the characters between them are known as a tag, and there are lots of tags in the example. All of the tags [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">If you look at the first and last lines of the code for the last example, you will see pairs of angle brackets containing the letters &lt;html&gt;. The two brackets and all of the characters between them are known as a tag, and there are lots of tags in the example. All of the tags in this example come in pairs; there are<br />
opening tags and closing tags. The closing tag is always slightly different than the opening tag in that it has a forward slash character before the characters &lt;/html&gt;.</p>
<p style="text-align: left;">
<div id="attachment_100" class="wp-caption alignnone" style="width: 319px"><img class="size-full wp-image-100" title="html" src="http://vdiscussion.com/wp-content/uploads/2009/11/html1.JPG" alt="html" width="309" height="91" /><p class="wp-caption-text">html</p></div>
<p style="text-align: left;">The special meaning these tags give is a description of the structure of the document. The opening tag says “This is the beginning of a heading” and the closing tag says “This is the end of a heading.”Without the markup, the words in the middle would just be another bit of text; it would not be clear that they formed the heading.<br />
Now look at the paragraph of text about the company; it is held between an opening &lt;p&gt; tag and a closing &lt;/p&gt; tag. And, you guessed it, the p stands for paragraph.</p>
<p style="text-align: left;">As you can see, the markup in this example actually describes what you will find between the tags, and the added meaning the tags give is describing the structure of the document. For example, between the opening &lt;p&gt; and closing &lt;/p&gt; tags are paragraphs and between the &lt;h1&gt; and &lt;/h1&gt; tags is a heading. Indeed, the whole HTML document is contained between opening &lt;html&gt; and closing &lt;/html&gt; tags.<br />
If you were wondering why there is a number 1 after the h , it is because in HTML and XHTML there are six levels of headings. A level 1 heading is sometimes used as the main heading for a document (such as a chapter title), which can then contain subheadings, with level 6 being the smallest. This allows you to structure your document appropriately with subheadings under the main heading.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/tags-and-elements-of-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sample HTML program discussion</title>
		<link>http://vdiscussion.com/sample-html-program-discussion/</link>
		<comments>http://vdiscussion.com/sample-html-program-discussion/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 15:51:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Software Programs]]></category>
		<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[HTML program]]></category>
		<category><![CDATA[Sample HTML program]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=93</guid>
		<description><![CDATA[HTML, or Hypertext Markup Language, is the most widely used language onWeb. As its name suggests, HTML is a markup language, which may sound complicated, although really you come across markup every day. Markup is just something you add to a document to give it special meaning; for example, when you use a highlighter pen [...]]]></description>
			<content:encoded><![CDATA[<p>HTML, or Hypertext Markup Language, is the most widely used language onWeb. As its name suggests, HTML is a markup language, which may sound complicated, although really you come across markup every day. Markup is just something you add to a document to give it special meaning; for example, when you use a highlighter pen you are marking up a document. When you are marking up a document for the Web, the special meaning you are adding indicates the structure of the document, and the markup indicates which part of the document is a heading, which parts are paragraphs, what belongs in a table, and so on. This markup in turn allows a Web browser to display your document appropriately.</p>
<p>When creating a document in a word processor, you can distinguish headings using a heading style (usually with a larger font) to indicate which part of the text is a heading. You can use the Enter (or Return) key to start a new paragraph. You can insert tables into your document, create bulleted lists,<br />
and so on. When marking documents up for the Web you are performing a very similar process. HTML and XHTML are the languages you use to tell aWeb browser where the heading is for aWeb page, what is a paragraph, what is part of a table and so on, so it can structure your document and render it properly. But what is the difference between HTML and XHTML?Well, first you should know that there are several versions of both HTML and XHTML, but don’t let that bother you—it all sounds a lot more complicated than it really is. Whereas there are several versions of HTML, each version just adds functionality on top of its predecessor (like a new version of some software might add some features or a new version of a dictionary might add a few extra words), or offers better ways of doing things that were already in earlier versions. So, you do not need to learn each version of HTML and XHTML, nor do you need to focus on one variation. This book teaches you all you need to know to writeWeb pages using HTML and XHTML. Indeed, as I mentioned in the Introduction, XHTML is just like the latest version of HTML, as you will see shortly (although to be accurate, while it is almost identical to the last version of HTML, it is technically HTML’s successor).</p>
<blockquote><p>Sample Code :</p>
<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Vdiscussion: About Us&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;h1&gt;About Vdiscussion.com&lt;/h1&gt;<br />
&lt;p&gt;Vdiscussion is free educational site<br />
&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></blockquote>
<p>Save this code as filename.html.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/sample-html-program-discussion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
