diff --git a/files/en-us/web/html/element/index.html b/files/en-us/web/html/element/index.html index e80435a4946741e..4c454848a68af9e 100644 --- a/files/en-us/web/html/element/index.html +++ b/files/en-us/web/html/element/index.html @@ -61,6 +61,29 @@

Embedded content

{{HTMLRefTable({"include":["HTML embedded content"], "exclude":["multimedia"]})}}

+

SVG and MathML

+ +

You can embed SVG and MathML content directly into HTML documents, using the {{SVGElement("svg")}} and {{MathMLElement("math")}} elements.

+ + + + + + + + + + + + + + + + + + +
ElementDescription
{{SVGElement("svg")}}The svg element is a container that defines a new coordinate system and viewport. It is used as the outermost element of SVG documents, but it can also be used to embed an SVG fragment inside an SVG or HTML document.
{{MathMLElement("math")}}The top-level element in MathML is <math>. Every valid MathML instance must be wrapped in <math> tags. In addition you must not nest a second <math> element in another, but you can have an arbitrary number of other child elements in it.
+

Scripting

In order to create dynamic content and Web applications, HTML supports the use of scripting languages, most prominently JavaScript. Certain elements support this capability.