List style kese banaya jata hai CSS programming language se.
learn:-
Use of list tag.
๐ The list-style-type specifies the type of list item shape in a list.
๐several shapes can be used for listing
๐ By default it is a filled circle.
Some shapes are :
⚪(circle)
⬜ (square)
.
.
etc.
This Code
๐
<!doctype html>
<html>
<head>
<title>
use of list tag
</title>
<style>
.u1{list-style-type: circle;}
.u1{list-style-type: square;}
</style>
</head>
<body>
<p> Example of unordered lists : </p>
<ul class="u1">
<li> coffee </li>
<li> tea </li>
<li> coca </li>
</ul>
<ul class="u2">
<li> coffee </li>
<li> tea </li>
<li> coca </li>
</ul>
</body>
</html>
this code write by notepad/++notepad
again,
output shows
personal browsar in
Comments