Hello there,
I do not understand that why an example, there used <ol> </ol>
for open and close
but in index.html, there used <ul></ul>
for open and closed.
Do we can use them both ?
Thank you,
Wara
Hello there,
I do not understand that why an example, there used <ol> </ol>
for open and close
but in index.html, there used <ul></ul>
for open and closed.
Do we can use them both ?
Thank you,
Wara
<ol>
is an ordered list, list elements within this list have numbers
<ul>
is a unordered list, list elements withing this list have bullet points.
Thank you