<noscript>

Defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/noscript

#HTML #WebDev #DailyHTML

<noscript>: The Noscript element - HTML | MDN

The <noscript> HTML element defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.

MDN Web Docs
<h1>–<h6>: The HTML Section Heading elements - HTML | MDN

The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest. By default, all heading elements create a block-level box in the layout, starting on a new line and taking up the full width available in their containing block.

MDN Web Docs

<sub>

Specifies inline text which should be displayed as subscript for solely typographical reasons.

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/sub

#HTML #WebDev #DailyHTML

<sub>: The Subscript element - HTML | MDN

The <sub> HTML element specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts are typically rendered with a lowered baseline using smaller text.

MDN Web Docs

⚠️ DEPRECATED: <rtc>

Embraces semantic annotations of characters presented in a ruby of rb elements used inside of ruby element.

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/rtc

#HTML #WebDev #DailyHTML

<rtc>: The Ruby Text Container element - HTML | MDN

The <rtc> HTML element embraces semantic annotations of characters presented in a ruby of <rb> elements used inside of <ruby> element. <rb> elements can have both pronunciation (<rt>) and semantic (<rtc>) annotations.

MDN Web Docs
<div>: The Content Division element - HTML | MDN

The <div> HTML element is the generic container for flow content. It has no effect on the content or layout until styled in some way using CSS (e.g., styling is directly applied to it, or some kind of layout model like Flexbox is applied to its parent element).

MDN Web Docs

<head>

Contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets.

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/head

#HTML #WebDev #DailyHTML

<head>: The Document Metadata (Header) element - HTML | MDN

The <head> HTML element contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets. There can be only one <head> element in an HTML document.

MDN Web Docs

<progress>

Displays an indicator showing the completion progress of a task.

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/progress

#HTML #WebDev #DailyHTML

<progress>: The Progress Indicator element - HTML | MDN

The <progress> HTML element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

MDN Web Docs

<thead>

Encapsulates a set of table rows, indicating that they comprise the head of a table with information about the table's columns.

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/thead

#HTML #WebDev #DailyHTML

<thead>: The Table Head element - HTML | MDN

The <thead> HTML element encapsulates a set of table rows (<tr> elements), indicating that they comprise the head of a table with information about the table's columns. This is usually in the form of column headers (<th> elements).

MDN Web Docs
<h1>–<h6>: The HTML Section Heading elements - HTML | MDN

The <h1> to <h6> HTML elements represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest. By default, all heading elements create a block-level box in the layout, starting on a new line and taking up the full width available in their containing block.

MDN Web Docs

<picture>

Contains zero or more source elements and one img element to offer alternative versions of an image for different display/device scenarios.

https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/picture

#HTML #WebDev #DailyHTML

<picture>: The Picture element - HTML: HyperText Markup Language | MDN

The <picture> HTML element contains zero or more <source> elements and one <img> element to offer alternative versions of an image for different display/device scenarios.

MDN Web Docs