html unordered list
Unordered List HTMLQ. what is the unordered list in html?HTML Unordered List :- 1] Unordered list is a Bulleted Format. 2] Unordered list starts with the <ul> tag. 3] Unordered list end </ul> tag. 4] Each unordered list item starts with the <li> tag. 5] Each Unordered list items end with the</li> tag. Syntax :-<ul type=" put the list type ">Que . What is the type of unordered list in html ? Unordered list 4 type of bulleted format. 1) type = "disc" 2) type = "circle" 3) type = "square" 4) type = "none" 1) disc :- disc is the default style. disc list items are maked with bullets. Syntax :-<ul type="disc">HTML Unordered List (disc) Example :-<html> <body> <h1>Unordered list</h1> <h2> disc</h2> <ul type="disc"> <li>Seeta</li> <li>Ram</li> <li>swami</li> <li>Mahadev</li> </ul> </body> <html> HTML Unordered List (disc)Output :-
|
Post a Comment