By default, an ordered list will start counting from One. The start attribute is used to start counting from a specified number:
<ol start="50"> <li> Feta </li> <li> American </li> < li > Swiss </li > </ol> <ol type="I" start="50"> <li> Feta </li> <li> American </li> <li> Swiss </li> </ol>
I found this tag at w3schools.com
This tag is used to add an expansion panel to the webpage.
My favorite cheese is American.
< details > <summary> Favorite Cheese </summary> < p > My favorite cheese is American. < /p > < /details >
I found this tag at medium.com
This tag is used to highlight something on a webpage.
American cheese is the most superior cheese.
< p > American cheese is the most < mark > superior < /mark> cheese. < /p >
I found this tag at webdesign.tutsplus.com