‹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> HTML 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

‹nav›

Represents a section of a page whose purpose is to provide navigation links.

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

#HTML #WebDev #DailyHTML

<nav> HTML navigation section element - HTML | MDN

The <nav> HTML element represents a section of a page whose purpose is to provide navigation links, either within the current document or to other documents. Common examples of navigation sections are menus, tables of contents, and indexes.

MDN Web Docs

‹del›

Represents a range of text that has been deleted from a document.

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

#HTML #WebDev #DailyHTML

<del> HTML deleted text element - HTML | MDN

The <del> HTML element represents a range of text that has been deleted from a document. This can be used when rendering "track changes" or source code diff information, for example. The <ins> element can be used for the opposite purpose: to indicate text that has been added to the document.

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> HTML 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

📐 SVG: ‹stop›

Defines a color stop within a linear or radial gradient.

https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/stop

#HTML #WebDev #DailyHTML

<stop> - SVG | MDN

The <stop> SVG element defines a color and its position to use on a gradient. This element is always a child of a <linearGradient> or <radialGradient> element.

MDN Web Docs

‹base›

Specifies the base URL to use for all relative URLs in a document. There can be only one such element in a document.

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

#HTML #WebDev #DailyHTML

<base> HTML document base URL element - HTML | MDN

The <base> HTML element specifies the base URL to use for all relative URLs in a document. There can be only one <base> element in a document.

MDN Web Docs

‹select›

Represents a control that provides a menu of options.

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

#HTML #WebDev #DailyHTML

<select> HTML select element - HTML | MDN

The <select> HTML element represents a control that provides a menu of options.

MDN Web Docs

‹style›

Contains style information for a document or part of a document. It contains CSS, which is applied to the contents of the document containing this element.

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

#HTML #WebDev #DailyHTML

<style> HTML style information element - HTML | MDN

The <style> HTML element contains style information for a document, or part of a document. It contains CSS, which is applied to the contents of the document containing the <style> element.

MDN Web Docs

📐 SVG: ‹feTurbulence›

Generates procedural noise or turbulence for SVG filter effects.

https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/feTurbulence

#HTML #WebDev #DailyHTML

<feTurbulence> - SVG | MDN

The <feTurbulence> SVG filter primitive creates an image using the Perlin turbulence function. It allows the synthesis of artificial textures like clouds or marble. The resulting image will fill the entire filter primitive subregion.

MDN Web Docs

📐 SVG: ‹style›

Embeds style sheet rules inside an SVG document.

https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/style

#HTML #WebDev #DailyHTML

<style> - SVG | MDN

The <style> SVG element allows style sheets to be embedded directly within SVG content.

MDN Web Docs