Hi ! friends, I'm Deepak

Friday, 30 August 2019

Some tags of HTML.

Hello! friends,


There also some other tags in which you can try in your HTML code.
let's see what is the code,

<html>  
    <head>  
         <title>This is used to put links of other files or website.</title>
    </head>  
    <body>  
        <b>This is bold tag.</b>
        
        <br> 
        
        <i>This is italic tag,which is a text tag.</i>
        <br>
        <u>This is under line tag.</u>
        <br>
        
        <hr> 
        
        <h4>Display of href attribute.</h4>  
        <p>Below is the link of anchor tag, click the link and see the next page</p>  
        <a href="https://www.nasa.gov">This is a link</a>  
    </body>  
</html>  

here,<a> tag is used to put links.
And some other tags are also is used in this code like,
<br>=for line break in HTML.
<hr>=for horizontal line in HTML.

    You can try it of yourself, checkout the output of the code. 

No comments:

Post a Comment