Monday, April 13, 2020

HOW TO DRAW HORIZONTAL LINE IN HTML ?

<!DOCTYPE html>

<html>
    <head>
        <meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
        <title>Hello, World!</title>
    </head>
    <body>
        <h1>
            Hello, World!
        </h1>
       
         Here we will learn how to draw a horizontal line in a webpage.
        Here hr tag is used for this.We can change the color by value of its ' color ' attribute
        For example :
         
       
        <hr color ="red">
        <hr color ="green">
        <hr color ="yellow">
        <hr color ="blue">
        <hr color ="brown">
       
       
       
    </body>
</html>


OUTPUT : 


No comments:

Post a Comment