Create a web page on the topic ‘Pollution’ and include the following
tags:
1. Draw a horizontal line for the heading.
2. Give a colour to your webpage and text.
3. Write a small paragraph about the topic and format it properly.
4. Use all three types of lists.
5. One Nested list with OL and UL or OL and DL.
6. Give different colours in a sentence and use Superscript and
Subscripts.
OR
Create a web page on your favourite sport and include the following
tags:
1. Draw a horizontal line for the heading.
2. Give a colour to your webpage and text.
3. Write a small paragraph about the topic and format it properly.
4. Use all three types of lists.
5. One Nested list with OL and UL or OL and DL.
6. Give different colours in a sentence and use Superscript and
Subscripts.
Answers
Answered by
3
Answer:
Unordered HTML List - Choose List Item Marker
The CSS list-style-type property is used to define the style of the list item marker. It can have one of the following values:
Value Description
disc Sets the list item marker to a bullet (default)
circle Sets the list item marker to a circle
square Sets the list item marker to a square
none The list items will not be marked
Example - Disc
<ul style="list-style-type:disc;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Example - Circle
<ul style="list-style-type:circle;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Example - Square
<ul style="list-style-type:square;">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Similar questions