-->

HTML with paragraph

We can use different paragraph in our HTML page.
-----------------------------------------------------------------------------------------------
<html>
<head><!--for meta tags-->
<title><!-- for title-->
formatting tags
</title>
</head>
<body><!--for contents-->
<p align="left">
<!--align is not used in HTML 5-->
he following pages contain the official documentation for Sublime Text 3. The Sublime Text Unofficial Documentation is an excellent supplementary resource, with a huge amount of information not covered in the official documentation.
</p>
<p align="right">
he following pages contain the official documentation for Sublime Text 3. The Sublime Text Unofficial Documentation is an excellent supplementary resource, with a huge amount of information not covered in the official documentation.
</p>
<p align="justify">
he following pages contain the official documentation for Sublime Text 3. The Sublime Text Unofficial Documentation is an excellent supplementary resource, with a huge amount of information not covered in the official documentation.
</p>
</body>
</html>
-------------------------------------------------------------------------------------
note:We do not use align with p tag. It is obsolete now.
 

No comments:

Post a Comment