<!--use of unordered list in html-->
<!--two type of styling but with symbols called bullet and square-->
<ul>
<li>Apple</li> <!--li stands for list item-->
<li>Banana</li>
<li>Orange</li>
<li>Papaya</li></ul>
<ul type="square">
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
<li>Papaya</li></ul>
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.