v) How can you make a bulleted list?
A) <list>
B) <nl>
C)<ul>
D) <ol>
Answers
Answer:
c) ul=unordered list
Explanation:
there is no tag is html like a and b ...
d is used for ordered line
so c is the right answer
Answer:
C) <ul>
Explanation:
The <ul> element is for grouping a collection of items that do not have a numerical ordering, and their order in the list is meaningless. Unordered-list items are shown with a bullet, which can be of different forms, such as dot, a circle, or a square. The bullet style is not defined in the HTML description of the page.
The <ul> and <ol> elements may be nested as deeply as desired. Moreover, the nested lists may alternate between <ol> and <ul> without restriction.
The <ol> and <ul> elements both represent a list of items. They differ in that, with the <ol> element, the order is meaningful. To determine which one to use, try changing the order of the list items; if the meaning is changed, the <ol> element should be used, otherwise you can use <ul>.
#SPJ5