Category: HTML Tags List
-
HTML Wbr Tag
HTML <wbr> tag is used to specify a line break opportunity within an HTML document. Without wbr tag, it is very difficult to read a long single word or a sentence. Without wbr tag, single long word can wrap or not wrap at all, it creates problem for the layout of the page. Without <wbr> tag, users…
-
HTML Video Tag
HTML 5 supports <video> tag also. The HTML video tag is used for streaming video files such as a movie clip, song clip on the web page. Currently, there are three video formats supported for HTML video tag: Let’s see the table that defines which web browser supports video file format. Browser mp4 webM ogg…
-
HTML<var> tag
HTML <var> tag is a phrase tag which is used to define the variable for a mathematical equation, or in the programming context. The content within <var> tag renders in italic font in most of the browsers, but it can be overridden using appropriate CSS. Following are some related elements of <var> tag, which can…
-
HTML<u> tag
HTML <u> tag is used to define a span of inline text with a non-textual annotation. It rendered as an solid underlined text, but it can be changed using CSS properties. This tag was deprecated in HTML 4.0 and redefined in HTML5. In HTML5, <u> tag is used to represent the text that is stylistically…
-
HTML<tt>tag
HTML <tt> tag was used to define text in monospaced font or fixed-width fonts so that it would render as teletype, text-only screen, or line printer on the browser. Note: Do not use HTML <tt> tag, as it is not supported in HTML5, instead of you can use following tags for better use: Syntax Following…
-
HTML<track> tag
HTML <track> tag is used to define time-based text tracks for a media file. The <track> tag must use as child element of <audio> and <video> elements. The <track> tag is used to add subtitle, caption, or any other form of text which displayed when a media file plays. HTML <track> is new tag in…
-
HTML<tr> tag
HTML <tr> tag is used to define the rows in the table. The <tr> tag can consist one or more <th> head cells and <td> data cells to define a single row of HTML table. The <tr> tag must be a direct child of <table> element or it can be nested child of <thead>, <tbody>,…
-
HTML Title
HTML title tag is used to provide a title name for your webpage. It is necessary for Search Engine Optimization (SEO). The HTML title tag must be used inside the <head> tag. The title of the page is displayed on the title bar of the browser. Let’s see the example of HTML title tag. Here you see…
-
HTML Time Tag
HTML <time> tag is used to define date and time. It displays time value in a 24 hour clock or a precise date in a Gregorian calendar in HTML. It is used to encode dates and times in a machine-readable way to make easy to mark or schedule your task. It also helps search engines to…
-
HTM<Lthead> tag
HTML <thead> elements is used to define header of an HTML table. The <thead> tag is used along with <tbody> and <tfoot> tags which defines table header, table body, and table footer in an HTML table. The <thead> tag must be child of <table> element, and it must be used before any <tbody>, <tr>, or…