Westonci.ca offers fast, accurate answers to your questions. Join our community and get the insights you need now. Experience the ease of finding reliable answers to your questions from a vast community of knowledgeable experts. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

Observe the following output and write the complete HTML-CSS code to generate it:

Observe The Following Output And Write The Complete HTMLCSS Code To Generate It class=

Sagot :

tonb

Answer:

HTML:

<ol start="3">

 <li>English</li>

 <li>Maths</li>

 <li>Physics</li>

 <li>Chemistry</li>

 <li>Biology</li>

</ol>

CSS:

ol {

 color: green;

 font-family: Courier;

 list-style-type: lower-roman;

 border: 2px dotted black;

 width: 200px;

}

li {

 margin-left: 10px;

}

Explanation:

The left margin on the li is not very clean, but it prevents the roman numbers from exceeding the border.

View image tonb