Lists where each item consists of a term and its description, created using the <dl> element
Description Lists
<dl><dt>Coffee</dt><dd>Black hot drink</dd><dt>Milk</dt><dd>White cold drink</dd></dl>
Input Types
Form controls that allow users to input data, specified using the type attribute of the <input> element
Input Types
Text input
Password input
Checkbox
Radio button
Submit button
Reset button
In HTML, the <input> element is used to create form controls that allow users to input data. The 'type' attribute of the <input> element specifies the type of input control that will be created.
Input types
Text input (type="text")
Password input (type="password")
Checkbox (type="checkbox")
Radio button (type="radio")
Submit button (type="submit")
Reset button (type="reset")
File input (type="file")
Date input (type="date")
In HTML, <div> is a block-level element that is used to create a division or section in a web page. It is a generic container that allows you to group and style content together.
In HTML, <span> is an inline-level element used to apply styles or manipulate specific portions of text within a larger block of content without affecting the structure of the document.
In HTML, the <table> element is used to create tabular data or tables. Tables consist of rows (<tr>) and columns (<td> for regular cells, <th> for header cells). The structure of a table is defined by these elements.
The <main> tag is a semantic HTML5 element used to represent the main content of a document or web page.
The <section> element is often used to divide the content of a webpage into distinct sections, such as chapters, articles, or functional blocks.