HTML5 Tags

Some new tags were introduced in HTML 5 to provide a better document structure. These tags are listed below. Tag Uses <article> It is used to specify a blog, magazine, newspaper article, or any other independent content in a document. <aside> Used to indicate that the specified article is somehow related to the rest of … Read more

wbr HTML

HTML <wbr> Tag To define a line break opportunity within an HTML document, the HTML <wbr> tag is used. A single long word, in general, can wrap or not wrap at all on a web page. Scrolling is thus needed to read a long complete word or sentence. However, this is not the case with … Read more

var HTML

HTML <var> Tag The HTML <var> tag is a phrase tag. It is used to specify a variable for a mathematical equation or a computer code. It displays the contents in the italic font. HTML Phrase Tags: Tag Uses <em> To display an emphasized text. <strong> To display an important text. <dfn> To specify a … Read more

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

tt HTML

HTML <tt> Tag The HTML <tt> tag is not supported in HTML5. It was earlier used to specify a particular text in a monospaced font or fixed-width font. It thus displays the text on the browser as a teletype, text-only screen, or line printer. The below tags can be used in HTML5 instead of the … Read more