Headings and Paragraphs(HTML)

 <!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Heading Paragraphs and Emmet</title>

</head>

<body>

    <!-- we can create max 6 num of headings -->

    <h1>suraj</h1>

    <h2>suraj</h2>

    <h3>suraj</h3>

    <h4>suraj</h4>

    <h5>suraj</h5>

    <h6>suraj</h6>

    <p>this is suraj</p>

    <!-- lorem40 for creating 40 dummy words  -->

    <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nisi deleniti nobis enim molestiae <strong>this is strong</strong> nemo impedit, corporis tempore fuga laudantium quisquam omnis <em>this is emphasized</em> doloremque mollitia voluptatem quis sequi provident iste dolor consectetur obcaecati distinctio eum totam sunt? Nesciunt, obcaecati. Ea, ut officiis.</p>

    <!-- use strong tag instead of using bold tag -->

    <!-- use em tag instead of using italic tag -->

    <!-- this tag is for braking the lines -->

    <p>first <br>this is second line </p>

    <p>secord</p>

    <p>third</p>

    <p>four</p>

    <p>five</p>

    <!-- tag to create horizontal lines -->

    <hr>

    <p>this is a paragraph</p>

    <!-- (ctrl+enter) to jump a new line without touchinh a mouse -->

</body>

</html> 

Comments

Popular posts from this blog

Transform Property In CSS

More on CSS Selectors