HTML – Select Tag
The <select> tag is used to create a drop-down list, and is most often used in a form to collect user input.
The <select> tag is used to create a drop-down list, and is most often used in a form to collect user input.
The <small> tag makes text smaller than the surrounding text, usually set to about 80%. It is often used for copyright or side information.
The <source> tag is used to specify multiple media resources for media elements, such as the <video> tag, <audio> tag, and <picture> tag.
The <span> tag allows the grouping of inline elements, such as text, to create sections or subsections on the line that can be styled differently.
The <strong> tag is used to define text with strong importance. The content inside is typically displayed in bold and should be read as a strong voice.
The <style> tag is used in the <head> of a document to define style information (CSS) to specify how things should look in the browser.
The <sub> tag defines subscript text that appears half a character below the normal line, and is rendered in a smaller font for things like chemical formulas.
The <summary> tag specifies the title for a <details> tag that the user can open and close on demand.
The <sup> tag defines superscript text which appears half a character above the normal line, and is rendered in a smaller font for things like footnotes.
The <svg> tag defines a container for SVG graphics and has multiple methods for drawing paths, boxes, circles, text, and graphic images.
The <tbody> tag is used to group the body content in the table. It’s used in conjunction with the <thead> and <tfoot> elements to specify each part of a table.
A <td> tag defines a cell containing data in a table. The number of <td> tags in a table row (<tr>) determines the number of columns in that row.
The <tfoot> tag is used to group the body content in the table. It’s used in conjunction with the <thead> and <tbody> elements to specify each part of a table. The <tfoot> uses basic <tr> and <td> tags to define its rows and data cells.
A <th> tag defines a header (<thead>) cell containing data in a table. The number of <th> tags in a table row (<tr>) determines the number of columns in that row.
The <thead> tag is used to group header content in a table. It’s used in conjunction with the <tbody> and <tfoot>elements to specify each part of a table. The <thead> contains the two header columns that will contain <th> tags containing the names of each column.
A <tr> tag defines a row of cells (<td>) containing data in a table. The number of <td> tags in a table row (<tr>) determines the number of columns in that row. The table below has a header row and four rows of data.
The <template> tag is used to hold some content hidden from the user when the page loads.The content can then be rendered later with a JavaScript.
The <textarea> tag defines a multi-line text input element often used in a form to collect user inputs like comments or reviews.
The <time> tag is used for displaying a human-readable date and time. The datetime attribute is added to translate it into a machine-readable format.