Sponsered Links
Categories
Sponsered Links

HTML Basics

 

 In this section you can learn about HTML Headings, HTML Paragraphs, HTML Links and HTML Images.

HTML Headings

<html>
<body>
        <h1>This is a heading</h1> 
        <h2>This is a heading</h2> 
        <h3>This is a heading</h3> 
        <h4>This is a heading</h4> 
        <h5>This is a heading</h5> 
        <h6>This is a heading</h6> 
</body>
</html>
 

Output:

This is a heading

This is a heading

This is a heading

This is a heading

This is a heading
This is a heading


HTML Paragraphs

<html>
<body>
        <p>This is a paragraph</p> 
        <p>This is a paragraph</p> 
</body>
</html>

Output:

This is a paragraph

This is a paragraph


HTML Links

<html>
<body>

<a href="http://www.worldinfosoft.com">This is a link</a>

</body>
</html>

Output:

This is a link


HTML Images

   
   
   

Output:

 

 
 
Sponsered Links
Latest Updates
 
All Content of this site is for learning only. We do not warrant the correctness of its content. The risk from using it lies entirely with the user. While using this site, you agree to have read and accepted our terms of use and privacy policy.
Copyright © 2009 JSPSERVLETTUTORIAL.INFO All Right Reserved