Create an unordered list of 5 fruits with square bullets. Upload screen shot of program. on HTML
also send the pic of output on your computer
please
Answers
Answer:
circle, etc. The default is bullets, which is small black circles.
For creating an unordered list with circle bullets, use C S S 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 C S S property list-style-type to add square bullets to an unordered list.
Just keep in mind, the usage of style attribute overrides any style set globally. It will override any style set in the HTML <style> tag or external style sheets
Explanation:
hope it helps you
HTML 5 script for creating an unordered list of 5 fruits using square bullets:
<HTML>
<HEAD>
<TITLE>Brainly Answer</TITLE>
</HEAD>
<body>
<h2>Unordered List of 5 fruits with square bullets</h2>
<ul style="list-style-type:square;">
<li>Apple</li>
<li>Plum</li>
<li>Mango</li>
<li>Guava</li>
<li>Grape</li>
</ul>
</body>
</HTML>