write HTML codes to display various bullets type
Answers
Answered by
2
Answer:
html (hyper text markup language)
Answered by
3
Answer:
HTML-CODE
<ul> <li>text</li> <li>text</li> <li>text</li> </ul>
EXAMPLE
Makes a bulleted list using the default bullet type: text text text
HTML-CODE
<ul type="disc">
EXAMPLE
Starts a bulleted list using discs as bullets: This is one line This is another line And this is the final line
Similar questions