My Blog

    • Sample Page
Illustration of a bird flying.
  • 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…

    October 22, 2022
  • 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>,…

    October 22, 2022
  • 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…

    October 22, 2022
  • 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…

    October 22, 2022
  • HTML <thead> 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…

    October 22, 2022
  • HTML <th> tag

    In an HTML table there are two types of cells: HTML <th> tag is used to define the header cells of an HTML table. The header cell renders as bold and centered by default on the browser, but you can change its default style using CSS properties. The <th> tag must be used as a…

    October 22, 2022
  • HTML <tfoot> tag

    HTML <tfoot> tag is used to define the set of rows which represents footer of an HTML table. The <tfoot> tag must contain one or more <tr> element. The <tfoot> tag is used as a child element of HTML table (<table>) along with <thead> and <tbody> elements, where <thead> defines table header and <tbody> defines…

    October 22, 2022
  • HTML Textarea

    The HTML <textarea> tag is used to define a multi-line text input control. It can hold unlimited number of characters and the texts are displayed in a fixed-width font (usually courier). The size of the HTML textarea is defined by <cols> and <rows> attribute, or it can also be defined through CSS height and width properties. HTML…

    October 22, 2022
  • HTML <template> tag

    HTML <template> tag is used to hold the client-side content that will not render at the time of page load, but it can be instantiated during runtime using JavaScript. The content of the template will not be displayed until it is not activated using JavaScript. The browser processes the content of the <template> element while…

    October 22, 2022
  • HTML <td> tag

    HTML <td> tag is used to specify the cells of an HTML table which contain data of the table. The <td> tag must be the child element of <tr> (table row) tag. Each table row can contain multiple <td> data elements. The grouped <td> elements of a <tr> tag renders as a single row in…

    October 22, 2022
←Previous Page
1 … 96 97 98 99 100 … 113
Next Page→

My Blog

Proudly powered by WordPress