write an html code to display square bullets in an ordered list
Answers
Answered by
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
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 :—
Happy INDEPENDENCE Day
❤ 50 ➕ føĺĺøw ♒ INBOX
☺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 :—
Happy INDEPENDENCE Day
❤ 50 ➕ føĺĺøw ♒ INBOX
Similar questions