Hello Forum,
Please how can I create such bullet points just like the one in the below image ?
From the picture you can see that each write-up has a "dot" before it
Hi RichardSa,
Use UL and LI tag.
HTML
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </head> <body> <ul> <li>ASP.Net</li> <li>MVC</li> <li>Core</li> <li>AngularJS</li> </ul> </body> </html>
Demo
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.