Here’s a quick HTML coding tip that I thought you may be interested in. By the way, you can find more information on basic HTML codes at www.WebsiteToad.com.
Inserting Bullet Points
Bullet points are great for separating a list in an easy to read format. The bullet point tag is as follows:
<ul>
<li> Item 1 </li>
<li> Item 2 </li>
<li> Item 3 </li>
</ul>
The code would appear as:
- Item 1
- Item 2
- Item 3
Inserting Circle Bullet Points
Bullet points are great for separating a list in an easy to read format. The bullet point tag is as follows:
<ul type=”circle”>
<li> Item 1 </li>
<li> Item 2 </li>
<li> Item 3 </li>
</ul>
The code would appear as:
- Item 1
- Item 2
- Item 3
I don’t know if this was anything that you were losing sleep over but I had to create some bullets and figured I’d pass the information online. Hope you’re having a good one!
Best regards,
David Lalumendre
www.WebsiteToad.com


