Answer to Question #309430 in HTML/JavaScript Web Application for Urooj

Question #309430

Create a new index.html file and include the following:

  • All of the mandatory structural elements.
  • Six headings using all of the <h> tags.
  • A paragraph of text underneath your headings.
  • Make sure the code is indented and spaced properly.
  • Add comments explaining what each element does.
1
Expert's answer
2022-03-10T18:07:04-0500
<!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>Title</title>
</head>
<body>
    <header>header</header> <!-- header of site -->
    <main>
        <h1>h1</h1> <!-- heading type 1 of site -->
        <h2>h2</h2> <!-- heading type 2 of site -->
        <h3>h3</h3> <!-- heading type 3 of site -->
        <h4>h4</h4> <!-- heading type 4 of site -->
        <h5>h5</h5> <!-- heading type 5 of site -->
        <h6>h6</h6> <!-- heading type 6 of site -->

        <p>Lorem ipsum dolor sit amet.</p> <!-- paragraph of text of site -->
    </main>
    <footer>footer</footer> <!-- footer of site -->
</body>
</html>

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS