The list-style-type represents the list-item marker in a list
Example of Code
<style>
.Example-of-list-style-type {
font-size: 1.5em;
list-style-type: circle;
}
</style>
<body>
<ul class="Example-of-list-style-type">
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
</ul>
</body>
Output
- List item one
- List item two
- List item three
