Computer Science, asked by vk8724653, 5 months ago

html code for square bullets in unordered list​

Answers

Answered by sudeshnasarangi
0

Answer:

For creating an unordered list with circle bullets, use CSS property list-style-type. We will be using the style attribute. The style attribute specifies an inline style for an element. The attribute is used with the HTML <ul> tag, with the CSS property list-style-type to add square bullets to an unordered list.

Answered by aryasugur
0

Answer:

here also add <!doctype html> first ,hope it helps you

Explanation:

<HTML>

<BODY bgcolor="maroon">

<UL type="square">

<h1 style="100">

<font face="fontania" color="cyan"><LI>Maths</LI>

<LI> abc</LI>

<LI> ab</LI>

<LI> abc</LI>

<LI> abc :)</LI>

<LI> this is  an html page</LI>

</font>

</h1>

</UL>

</BODY>

</HTML>

Similar questions