Check out example codes for "bullet list html". It will help you in understanding the concepts better.
Code Example 1
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Code Example 2
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Code Example 3
<ul>
<li>Eggs</li>
<li>Pancakes</li>
<li>Jelly</li>
</ul>
Code Example 4
<!DOCTYPE html>
<html>
<body>
<ul>
<li>Make a buttlet point using this function</li>
</ul>
<ol>
<li>Make a numbered buttlet point using this function</li>
</ol>
Code Example 5
<ul>
<lh>ul Header</lh>
<li>Item One</li>
<li>Item Two</li>
<li>Item Thre</li>
</ul>
Code Example 6
#Type 1
<ul style="list-style-type:disk">
<li>Disk</li>
</ul>
#Type 2
<ul style="list-style-type:circle">
<li>Circle</li>
</ul>
#Type 3
<ul style="list-style-type:square">
<li>Square</li>
</ul>
Learn ReactJs, React Native from akashmittal.com