How to create list in html.
This is vedio and code of creating list.
For vedio click here 👇👇👇
This is cod of list creating in html .
<html>
<head> <title> my cv in htm</title> </head>
<h1> list </h1>
<body>
<li >
languages
<ul style="list-style-type:lower-roman;" >
<li>HTML</li>
<li>Java script</li>
<li>css</li>
<li>SQL1</li>
</ul>
<li >
books
<ul style="list-style-type:upper-latin;":>
<li>English</li>
<li>Urdu</li>
<li>Computer</li>
<li>Math</li>
</ul>
</li>
</ul>
<ul style="list-style-type:upper-alpha; " >
<li >
sports
<ul style="list-style-type:lower-armenian; " >
<li>hocky</li>
<li>tensball</li>
<li>criket</li>
<li>football</li>
</ul>
</li>
</ul>
<ul>
<li>hocky</li>
<li>tensball</li>
<li>criket</li>
<li>football</li>
</ul>
</body>
0 Comments