0% found this document useful (0 votes)
28 views1 page

HTML Lang Charset Name Content: "En" "UTF-8" "Viewport" "Width Device-Width, Initial-Scale 1.0"

The document contains various HTML headings from H1 to H6 with the text "Harry". It also contains 3 paragraphs of dummy text with some words in strong and emphasized tags. The third paragraph contains a line break. There are horizontal rules and additional paragraphs.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views1 page

HTML Lang Charset Name Content: "En" "UTF-8" "Viewport" "Width Device-Width, Initial-Scale 1.0"

The document contains various HTML headings from H1 to H6 with the text "Harry". It also contains 3 paragraphs of dummy text with some words in strong and emphasized tags. The third paragraph contains a line break. There are horizontal rules and additional paragraphs.

Uploaded by

Debabrata Saha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Heading paragraph and Emmet</title>

</head>
<body>
    <h1>Harry</h1>
    <h2>Harry</h2>
    <h3>Harry</h3>
    <h4>Harry</h4>
    <h5>Harry</h5>
    <h6>Harry</h6>
    <!-- lorem 23 for 23 dummy words -->
    <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quasi <strong>T
his is strong</strong> laboriosam <em>This is emphasized</em> maiores tenetur er
ror ipsa sunt assumenda nemo labore itaque inventore ab, magni ipsam doloremque 
quisquam cumque sit delectus quod neque debitis consequatur iste optio.</p>
    <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quasi <strong>T
his is strong</strong> laboriosam <em>This is emphasized</em> maiores tenetur er
ror ipsa sunt assumenda nemo labore itaque inventore ab, magni ipsam doloremque 
quisquam cumque sit delectus quod neque debitis consequatur iste optio.</p>
    <p>first <br>
        this is a new line
    </p>
    <hr>
    <!-- ctrl + enter to jump on the new line -->
    <p>second</p>
    <p>foth</p>
    <p>fifth</p>

    
</body>
</html>

You might also like