Monday, April 13, 2020

HOW TO DISPLAY PARAGRAPH IN HTML ?

<!DOCTYPE html>

<html>
    <head>
        <meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
        <link rel="stylesheet" href="styles/style.css"/>
        <title>Hello, World!</title>
    </head>
    <body>
        <h1>
            Hello, World!
        </h1>
       
        Here we Will learn how to display paragraphs in HTML .
        Here p tag is used for placing paragraphs in a webpage.
        With align tag ,we can align paragraph in the webpage.
    For example :
<p align="right">
           
HELLO WORLD

</p>
       
       

    <p align="left">
           
HELLO WORLD
</p>
   
    <p align="center ">
           
HELLO WORLD
</p>
   
   
   
    </body>
</html>


OUTPUT : 


No comments:

Post a Comment