already passed
What is the internet? - correct answer ✔✔ Network of networks
What does HTML stand for? - correct answer ✔✔ Hyper Text Markup Language
Which HTML code would be used for the first tag in a document? - correct answer ✔✔ <html>
Where is the metadata about a webpage stored? - correct answer ✔✔ Head
What symbol is added to a tag to define it as the end tag? - correct answer ✔✔ /
Which HTML code would be used to start a new paragraph? - correct answer ✔✔ <p>
What html tags would you use to underline text? - correct answer ✔✔ <u> ... </u>
What is the purpose of the <ul>...</ul> tags? - correct answer ✔✔ Underlines Text
Which of these tags defines a data cell in a table? - correct answer ✔✔ <td>
Explain the difference between an ordered list and an unordered list in HTML - correct answer
✔✔ An unordered list (<ul>) is used to create a list of items in no particular order. By default,
the items in this list will be marked with bullets. Whereas, an ordered list (<ol>) is used to create
a list of items in a specific order. By default, the items in this list will be marked with numbers.