Welcome

Welcome, Thanks for Visit...

Tuesday, August 23, 2011

Some benefits of HTML




(1) - With HTML you can create your own Web site.


(2) - This blog teaches you everything about HTML.


(3) - HTML is easy to learn - You will enjoy it.


(with this blog you will find complete references about tags, standard attributes, standard events, color names, entities, character - sets, URL encoding, language codes, HTTP messages, and more S)


(just watch some basic example of html)
(1) - HTML paragraphs


   <html>
   <body>


   <h1> My Heading </h1> 
   <p>This is reuse text in a paragraph.</p>
   </body>
   </html>








(2) - The use of line breaks


<html>
<body>




<h1>Here comes the text. <br />And here is....</h1>




</body>
</html>




(3) - HTML links


<html>
<body>


<a href="http://www.w3schools.com">
Click Here</a>


</body>
</html>




(4) - HTML images


<html>
<body>


<img src="w3schools.jpg" width="104" height="142" />


</body>
</html>


(5) - HTML headings


<html>
<body>


<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>


 </body>
 </html>


(6) - Insert horizontal lines




<html>
<body>
<h1>Header</p>
<hr />
<p>This is the body</p>
<hr />
<p> Footer</p>
</body>
</html>



for more info mail it on niitianboy@gmail.com

No comments:

Post a Comment