Write an HTML code to display the following ; rice, beans onions, Maggie, using the cittle bullet
Answers
Answered by
0
Answer:
RBOM................
Answered by
2
Explanation:
<html>
<head>
<title>vegetable</title>
</head>
<body>
< ul type="bullet">
<li>rice</li>
<li>beans</li>
<li>onions</li>
<li>Maggie</li>
</ul>
</body>
</html>
end program......
ul means unordered list tag. It is used to display words in list with bullet,disc,circle square etc.
Similar questions