ul HTML

HTML <ul> Tag As the name itself suggests, all the list items are marked with bullets by default in a Bulleted List. It is popularly known as HTML Unordered List and hence starts with the <ul> tag. The list items in an HTML Unordered List start with the <li> tag. Tag specific Attributes: Attribute Value … Read more

Blockquote HTML

HTML <blockquote> Tag To specify a block of text that is quoted from another source, the HTML <blockquote> tag is used. On the browser, it displays the content as indented text. For short or inline quotes, the HTML <q> tag can be used instead of the HTML <blockquote> tag. Syntax: <blockquote>content</blockquote> Example: <!DOCTYPE html> <html> … Read more