HTML program to use block level tags
HTML Code
<html>
<head>
<title></title>
</head>
<body>
<h1 align="center">This is h1 tag with center alignment</h1>
<h2 align="left">This is h2 tag with left alignment</h2>
<h3 align="right">This is h3 tag with right alignment</h3>
<h4>This is h4 tag without alignment</h4>
<h5>This is h5 tag without alignment</h5>
<h6>This is h6 tag without alignment</h6><br><br><br>
<br>
<p>This is example of paragraph</p>
<p>This is new sentence without paragraph break</p>
</body>
</html>
OUTPUT