Which tag is used to encapsulate navigation and then style the elements appropriately as menu items?

A ul
B li
C nav
D both ul and li

Correct Answer: both ul and li

Conventionally, many web developers have use
    and
  • tags to encapsulate navigation and then styled the elements appropriately as menu items. This seems to introduce quite a bit of ambiguity in markup because it may be difficult to determine the difference between a list that has links in it and a list that is simply navigation.

    Related Questions

    Next steps