- Unordered List with Disc Bullets
<html>
<body>
<h2><font color="#FFFF00">Unordered List with Disc Bullets</font></h2>
<ul style="list-style-type:disc">
<li>Bujhe Na Se Bujhe Na</li>
<li>Gandu</li>
<li>
Nayak: The Hero</li>
<li>
The Music Room </li>
<li>
Charulata </li>
<li>
Pather Panchali</li>
<li>
The Big City </li>
<li>
The Clay Bird </li>
<li>
The Adventures of Goopy and Bagha</li>
<li>
Monpura</li>
</ul>
</body>
</html>
- Unordered List with Circle Bullets
<html>
<body>
<h2><font color="#99FF00">Unordered List with Circle Bullets</font></h2>
<ul style="list-style-type:circle">
<li>Bujhe Na Se Bujhe Na</li>
<li>Gandu</li>
<li>
Nayak: The Hero</li>
<li>
The Music Room </li>
<li>
Charulata </li>
<li>
Pather Panchali</li>
<li>
The Big City </li>
<li>
The Clay Bird </li>
<li>
The Adventures of Goopy and Bagha</li>
<li>
Monpura</li>
</ul>
</body>
</html>
- Unordered List with Square Bullets
<html>
<body>
<h2><font color="#CC0099">Unordered List with Square Bullets</font></h2>
<ul style="list-style-type:square">
<li>Bujhe Na Se Bujhe Na</li>
<li>Gandu</li>
<li>
Nayak: The Hero</li>
<li>
The Music Room </li>
<li>
Charulata </li>
<li>
Pather Panchali</li>
<li>
The Big City </li>
<li>
The Clay Bird </li>
<li>
The Adventures of Goopy and Bagha</li>
<li>
Monpura</li>
</ul>
</body>
</html>
- Unordered List without Bullets
<!DOCTYPE html>
<html>
<body>
<h2><font color="#00FF00">Unordered List without Bullets</font></h2>
<ul style="list-style-type:none">
<li>Bujhe Na Se Bujhe Na</li>
<li>Gandu</li>
<li>
Nayak: The Hero</li>
<li>
The Music Room </li>
<li>
Charulata </li>
<li>
Pather Panchali</li>
<li>
The Big City </li>
<li>
The Clay Bird </li>
<li>
The Adventures of Goopy and Bagha</li>
<li>
Monpura</li>
</ul>
</body>
</html>
0 Comments