HTML Body: Pragraph and Heading Tags






<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <!-- h*2  -->
    <h1>Himanshu</h1>
    <h2>Himanshu</h1>
    <h3>Himanshu</h1>
    <h4>Himanshu</h1>
    <h5>Himanshu</h1>
    <h6>Himanshu</h1>
    <p>This is himanshu</p>
    <!-- lorem is used to get random words -->
    <p> <strong>  this is bold text</strong>hello <em> this is italic</em>  <b> this is for bold </b> </p>
    
    <!-- p*3  -->
    <p>first <br> himanshu </p>
    <p>second <hr> </p>
    <!-- <hr> = horizontal rule/line  -->
    <p>third</p>
    <p>fourth</p>
    <p>he is a boy</p>
    <!-- use ctrl + enter to jump in new line -->
</body>
</html>