Computer Science, asked by arpitsharma07, 9 months ago

write an html code to display square bullets in an ordered list​

Answers

Answered by drishtidarshandudhe
3

Answer:

Explanation:

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 Mihir1001
21
☺Square-bulleted list is not possible in an ordered list.☺
☺It is only possible in unordered list.☺

☺ Here is ur required html code in unordered list :—

<html>
<head>
<title>Square Bullets</title>
</head>
<body>
<ul type="square">
<li>Physics</li>
<li>Chemistry</li>
<li>Biology</li>
<li>Mathematics</li>
<li>English</li>
<li>Physical Education</li>
</ul>
</body>
</html>

☺ Here is the output of the above code :—
<br />&lt;ul type="square"&gt;<br />&lt;li&gt;Physics&lt;/li&gt;<br />&lt;li&gt;Chemistry&lt;/li&gt;<br />&lt;li&gt;Biology&lt;/li&gt;<br />&lt;li&gt;Mathematics&lt;/li&gt;<br />&lt;li&gt;English&lt;/li&gt;<br />&lt;li&gt;Physical Education&lt;/li&gt;<br />&lt;/ul&gt; <br />

Happy INDEPENDENCE Day

\mid \underline{\underline{\LARGE\bf\green{Brainliest \: Answer}}}\mid

❤ 50 ➕ føĺĺøw ♒ INBOX
Similar questions