AllenSantiago
09-27-2012, 06:40 AM
HTML stands for hypertext markup language which is often used in the developing static website. It offers a variety of tags like <p>, <heading>, <a>, <img>, <meta> tag and many more in order to create a website.
Mentioned herewith the formation of HTML which are as
<html>
<body>
<h1>Heading Porion</h1>
<p> paragraph Porion.</p>
</body>
</html>
XML stands for extensible markup language which is often used to carry and store data similar to that of HTML. The tags are not predefined and you will need to create your own tags.
Mentioned herewith the formation of HTML which are as
<html>
<body>
<h1>Heading Porion</h1>
<p> paragraph Porion.</p>
</body>
</html>
XML stands for extensible markup language which is often used to carry and store data similar to that of HTML. The tags are not predefined and you will need to create your own tags.