From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ms/html/elemen/index.html | 208 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 208 insertions(+) create mode 100644 files/ms/html/elemen/index.html (limited to 'files/ms/html/elemen') diff --git a/files/ms/html/elemen/index.html b/files/ms/html/elemen/index.html new file mode 100644 index 0000000000..038d44abd8 --- /dev/null +++ b/files/ms/html/elemen/index.html @@ -0,0 +1,208 @@ +--- +title: Elemen-Elemen HTML +slug: HTML/Elemen +translation_of: Web/HTML/Element +--- +

This HTML reference lists all HTML elements, defined in HTML5 or in a previous specification. When enclosed within angle brackets, they form HTML tags: <elementname>. Elements are entities specifying how HTML documents should be built, and what kind of content should be placed in what part of an HTML document.

+

This page lists all standard HTML5 tags, but also older, obsolete and deprecated ones, as well as non-standard ones that browsers may support. Elements that were introduced in HTML5 are often referred as the new HTML5 elements, even though the other standard elements also are valid in HTML5.

+

In an HTML document, an element is defined by a starting tag. If the element contains other content, it ends with a closing tag, where the element name is preceded by a forward slash: </elementname>. Some elements don't need to be closed, such as image elements. These are known as void elements. HTML documents contain a tree of these elements. Each is named to represent what it does. For example, the <title> element represents the title of the document. Below is an alphabetical list of the HTML Elements.

+
+ A + + B + + C + + D + + E + + F + + G H + + I + + J K + + L + + M + + N + + O + + P + + Q + + R + + S + + T + + U + + V + + W + + X Y Z + +
+

The symbol This element has been added in HTML5 indicates that the element has been added in HTML5. Note that other elements listed here may have been modified or extended by the HTML5 specification. Dimmed elements are non-standard, obsolete, or deprecated; they must not be used in new Web sites, and should gradually be removed from existing ones.

-- cgit v1.2.3-54-g00ecf