<?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; XML</title>
	<atom:link href="http://vdiscussion.com/category/theory-subjects/xml-theory-subjects/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>Style sheet linking in XML</title>
		<link>http://vdiscussion.com/style-sheet-linking-in-xml/</link>
		<comments>http://vdiscussion.com/style-sheet-linking-in-xml/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:28:10 +0000</pubDate>
		<dc:creator>ma.vinothkumar</dc:creator>
				<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Style sheet]]></category>
		<category><![CDATA[Style sheet linking in XML]]></category>
		<category><![CDATA[XSLT]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=44</guid>
		<description><![CDATA[This technique, you link a style sheet to the XML document. A style sheet is a separate file that contains instructions for formatting the individual XML elements. You can use either a cascading style sheet (CSS)—which is also used for HTML pages—or an Extensible Stylesheet Language Transformations (XSLT) style sheet—which is considerably more powerful than [...]]]></description>
			<content:encoded><![CDATA[<p>This technique, you link a style sheet to the XML document. A style sheet is a separate file that contains instructions for formatting the individual XML elements. You can use either a cascading style sheet (CSS)—which is also used for HTML pages—or an Extensible Stylesheet Language Transformations (XSLT) style sheet—which is considerably more powerful than a CSS and is designed specifically for XML documents.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/style-sheet-linking-in-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does XML Replace HTML ?</title>
		<link>http://vdiscussion.com/does-xml-replace-html/</link>
		<comments>http://vdiscussion.com/does-xml-replace-html/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:27:16 +0000</pubDate>
		<dc:creator>ma.vinothkumar</dc:creator>
				<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Does XML Replace HTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=46</guid>
		<description><![CDATA[Currently, the answer to that question is no. HTML is still the primary language used to tell browsers how to display information on the Web. With Internet Explorer, the only practical way to dispense entirely with HTML when you display XML is to attach a cascading style sheet to the XML docu- ment and then [...]]]></description>
			<content:encoded><![CDATA[<p>Currently, the answer to that question is no. HTML is still the primary language<br />
used to tell browsers how to display information on the Web.<br />
With Internet Explorer, the only practical way to dispense entirely with HTML<br />
when you display XML is to attach a cascading style sheet to the XML docu-<br />
ment and then open the document directly in the browser. However, using a cas-<br />
cading style sheet is a relatively restrictive method for displaying and working<br />
with XML. All the other methods you’ll learn in this book involve HTML. Data<br />
binding and XML DOM scripts both use HTML Web pages as vehicles for dis-<br />
playing XML documents. And with XSLT style sheets, you create templates that<br />
transform the XML document into HTML that tells the browser how to format<br />
and display the XML data.<br />
Rather than replacing HTML, XML is currently used in conjunction with<br />
HTML and vastly extends the capability of Web pages to:<br />
I Deliver virtually any type of document<br />
I Sort, filter, rearrange, find, and manipulate the information in<br />
other ways<br />
I Present highly structured information<br />
As the quotation at the beginning of the chapter states, XML was designed for<br />
interoperability with HTML.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/does-xml-replace-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is XML ?</title>
		<link>http://vdiscussion.com/what-is-xml/</link>
		<comments>http://vdiscussion.com/what-is-xml/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 12:24:37 +0000</pubDate>
		<dc:creator>ma.vinothkumar</dc:creator>
				<category><![CDATA[Theory Subjects]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[SGML]]></category>
		<category><![CDATA[W3C]]></category>

		<guid isPermaLink="false">http://vdiscussion.com/?p=42</guid>
		<description><![CDATA[XML stands for Extensible Markup Language, was defined by the XML Working Group of the World Wide Web Consortium (W3C). This group described the language as follows: The Extensible Markup Language (XML) is a subset of SGML&#8230;Its goal is to enable generic SGML to be served, received, and processed on the Web in the way [...]]]></description>
			<content:encoded><![CDATA[<p>XML  stands for Extensible Markup Language, was defined by the<br />
XML Working Group of the World Wide Web Consortium (W3C). This group<br />
described the language as follows:<br />
The Extensible Markup Language (XML) is a subset of SGML&#8230;Its<br />
goal is to enable generic SGML to be served, received, and processed<br />
on the Web in the way that is now possible with HTML. XML has been<br />
designed for ease of implementation and for interoperability with both<br />
SGML and HTML.</p>
<p>As you can see, XML is a markup language designed specifically for delivering<br />
information over the World Wide Web, just like HTML (Hypertext Markup<br />
Language), which has been the standard language used to create Web pages<br />
since the inception of the Web. Since we already have HTML, which continues<br />
to evolve to meet additional needs, you might wonder why we require a com-<br />
pletely new language for the Web.</p>
]]></content:encoded>
			<wfw:commentRss>http://vdiscussion.com/what-is-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
