13
loading...
This website collects cookies to deliver better user experience
<article> </article>
<aside> </aside>
<details> </details>
<dialog> </dialog>
<figure> </figure>
<figcaption> </figcaption>
<footer> </footer>
<header> </header>
<header>
elements in a webpage but it should not be placed inside a <footer>
, <address>
or any other <header>
element.<main> </main>
<main>
element in a document.<meter> </meter>
<nav> </nav>
<progress> </progress>
<section> </section>
<summary> </summary>
<details>
element.<time> </time>
<wbr>
<element accesskey="character">
<element class="classname">
<element contenteditable="true|false">
"true"
then it specifies that the content is editable. If it is "false"
then it specifies that content is not editable.<element dir="ltr|rtl|auto">
"ltr"
then it specifies that the direction of text is left-to-right. If it is "rtl"
then the direction of text is right-to-left and if it is "auto"
then the browser will figure out the text direction.<element draggable="true|false|auto">
"true"
then it specifies that the element is draggable. If it is "false"
then the element is not draggable and if it is "auto"
then it is based on the default behaviour of the browser.<element hidden>
<element id="unique_id">
<element lang="language_code">
<element spellcheck="true|false">
"true"
then that element is to have its spelling and grammar checked. If it is "false"
then it is not to be checked. <element style="style_definitions">
<style>
tag or in an external style sheet.<element tabindex="number">
"tab"
button is used for navigation.<element title="text">
13