152k views
1 vote
What does using nesting in HTML allow you to do? A. Style the HTML automatically B. Automatically add missing opening or closing tags to the HTML C.Prevent any misspelled tag keywords from appearing in the HTML D.Improve readability and find and fix problems more easily

2 Answers

6 votes

Style the HTML automatically

Which would be option A on Edge.

I just took the test and i'm smart so trust me on this one

User Sphoenix
by
6.3k points
3 votes

Nesting in HTML, refers to putting element inside an element. For example, below is a stand-alone HTML element:

  • < i > mine < / i >

An example of nested HTML elements would be below:

  • < i > < b > mine < / b > < / i >

The purpose of this – and the answer to the question above – is (A) Style the HTML automatically.


User Derickito
by
6.9k points