template HTML

HTML <template> Tag To hold the client-side content which is not displayed when the page loads the HTML <template> tag is used. Using Javascript it can be instantiated during runtime and thus the content can be displayed when activated using JavaScript. While using the same content multiple times in an HTML document without any modification, … Read more

time HTML

HTML <time> Tag To define the date and time in a 24-hour clock or a precise date in the Gregorian calendar, the HTML <time> tag is used. It thus encodes the value of date and time in a machine-readable format. Thus making it easy to mark or schedule a task and also to produce smarter … Read more

title HTML

HTML <title> Tag The title of the document is required in all HTML documents and is thus defined by the HTML <title> element. This element thus serves the purpose of specifying the title in the browser tab, providing a title for the page when it is added to favorites, and displaying a title for the … Read more

tr HTML

HTML <tr> Tag To define the rows in a table, the HTML <tr> tag is used. Both the <th> head cells and <td> data cells can be placed within a <tr> tag to define a single row of an HTML table, but the <tr> tag itself is either the direct child of <table> element or … Read more

th HTML

HTML <th> Tag A cell in an HTML table can be of two types: Header cell – The header information is placed inside a header cell. It is created using the <th> element. Data Cells – The main data is placed inside a data cell. It is created using the <td> element. To define the … Read more

td HTML

HTML <td> Tag To define the data cells of an HTML table the HTML <td> tag is used as the child element of <tr> (table row) tag. These cells are used to place data in the table. Multiple <td> data elements can be placed within an HTML <tr> tag. Within a <tr> tag, the grouped … Read more