create a web page to display various Bullet type using <UL> tag
Answers
Answered by
0
Answer:
<html>
<head>
<title> Bullet List </title>
</head>
<body>
<ul>
<li type ="disc">Apple</li>
<li type="circle">Mango</li>
<li type ="square">Orange</li>
<li type ="none">Banana</li>
</ul>
</body>
</html>
Explanation:
Hopes it helpful!
Similar questions