Ok, so fourth challenge is like when teacher in school said “kids the homework is to study from page x to y”.
Most of us never studied but then regretted it, so for those that are lazy to go to MDN and search for the tags, I give you a quick solution. Each tag have a quick explanation of what it does, and is linked to the respective MDN article. I didn’t write any of the following texts, its all MDN’s creation. Enjoy
<div> : Document Division, it can be used to group elements for styling purposes or because they share attribute values.
<blockquote> : Block Quotation, indicates that the enclosed text is an extended quotation.
<p> : represents a paragraph
<ol> : ordered list, represents an ordered list of items. Typically, ordered-list items are displayed with a preceding numbering, which can be of any form, like numerals, letters or Romans numerals or even simple bullets.
<ul> : unordered list, represents an unordered list of items, namely a collection of items that do not have a numerical ordering, and their order in the list is meaningless. Typically, unordered-list items are displayed with a bullet.
<li> : List item, is used to represent a list item. It should be contained in an ordered list, an unordered list or a menu.
<nav> : Navigation, represents a section of a page that links to other pages or to parts within the page: a section with navigation links.
<menu> : menu, represents an unordered list of menu choices, or commands.
<span> : it can be used to group elements for styling purposes or because they share attribute values. <span> is very much like a <div> element, but <div> is a block-level element whereas a <span> is an inline element.
<time> : time, represents either time on a 24-hour clock or a precise date in the Gregorian calendar (with optional time and timezone information).
<q> : quote, indicates that the enclosed text is a short inline quotation.
<img> : image, represents an image to the document.
BTW, don’t forget to comment if you have any suggestion, or if you liked it and made your study session easier.
