Computer Science, asked by dipakbarmanghy71, 5 hours ago

16. Write HTML program to display
a. Milk
b. Coffee
c. Sugar​

Answers

Answered by Angeldiya85
4

Answer:

HTML tags as plain text in HTML on a website or webpage by replacing < with &lt; or &60; and > with &gt; or &62; on each HTML tag that you want to be visible. Ordinarily, HTML tags are not visible to the reader on the browser.

Answered by Itzpureindian
1

HTML Lists

« PreviousNext Chapter »

Example of an unordered list and an ordered list in HTML:

Unordered List:

Item

Item

Item

Item

Ordered List:

First item

Second item

Third item

Fourth item

Unordered HTML Lists

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.

The list items will be marked with bullets (small black circles):

Example

<ul>

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

Unordered HTML Lists - The Style Attribute

A style attribute can be added to an unordered list, to define the style of the marker:

Style Description

list-style-type:disc The list items will be marked with bullets (default)

list-style-type:circle The list items will be marked with circles

list-style-type:square The list items will be marked with squares

list-style-type:none The list items will not be marked

Similar questions