hey everyone ,Today we will learn two elements ,you might think that lists aren't important or that you wouldn't use them , but ....there is a big buttt here ,you will use it and aloooot more than you think ,so let's get started .
there are two types of lists first ordered list, and second an unordered list ,short story short the ordered list runs in order like
1.point 1
2.point 2
3.point 3
an unordered list runs with dots if you a a writer in read.cash you will find it named bullet list
point 1
point2
point3
and last how can I write these elements using Html , <ol> for ordered list</ol> and <ul> for unordered list</ul> and nest <li>for list</li> inside them
example
<ul>
<li>point 1</li>
<li>point 2</li>
<li>point 3</li>
</ul>
and for an ordered list same thing just change the <ul> element with a <ol>
<ol>
<li>point 1</li>
<li>point 2</li>
<li>point 3</li>
</ol>
next article :part 6
wow!it's html related article. I do not have enough knowledge about it.But I learned little about it.