Computer Science, asked by jaglalsingh360, 7 months ago

create a web page to display various Bullet type using <UL> tag​

Answers

Answered by royrishi1819
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