CSS programming language se list style kes bani jati hai....

 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