COMPUTER FUNDAMENTALS

COMPUTER NETWORKS AND COMMUNICATIONS

INTERNET AND WEB TECHNOLOGIES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
How can you make a bulleted list?
A
<ol>
B
<ul>
C
<list>
D
<dl>
Explanation: 

Detailed explanation-1: -The <ul> tag defines an unordered (bulleted) list. Use the <ul> tag together with the <li> tag to create unordered lists. Tip: Use CSS to style lists. Tip: For ordered lists, use the <ol> tag.

Detailed explanation-2: -The ul element represents an unordered list of items; that is, a list in which changing the order of the items would not change the meaning of list.

Detailed explanation-3: -Use the HTML <ul> element to define an unordered list. Use the CSS list-style-type property to define the list item marker. Use the HTML <li> element to define a list item. Lists can be nested. List items can contain other HTML elements. Use the CSS property float:left to display a list horizontally.

There is 1 question to complete.