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

Download FREE API for Word, Excel and PDF in ASP.Net:
Download
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