Attribute | Description |
---|---|
accept-charset | Specifies the charset used in the submitted form (default: the page charset). |
action | Specifies an address (url) where to submit the form (default: the submitting page). |
autocomplete | Specifies if the browser should autocomplete the form (default: on). |
enctype | Specifies the encoding of the submitted data (default: is url-encoded). |
method | Specifies the HTTP method used when submitting the form (default: GET). |
name | Specifies a name used to identify the form (for DOM usage: document.forms.name). |
novalidate | Specifies that the browser should not validate the form. |
target | Specifies the target of the address in the action attribute (default: _self). |
Tag | Description |
---|---|
<input type=""> |
Specifies the input type to display |
Tag | Description |
---|---|
<p> |
Defines a paragraph |
<br> |
Inserts a single line br |
<pre> |
Defines pre-formatted text |
Tag | Description |
---|---|
<article> |
Defines an article |
<aside> |
Defines content aside from the page content |
<details> |
Defines additional details that the user can view or hide |
<figcaption> |
Defines a caption for a <figure> element |
<figure |
Specifies self-contained content, like illustrations, diagrams, photos, code listings, etc. |
<footer> |
Defines a footer for a document or section |
<header> |
Specifies a header for a document or section |
<main> |
Specifies the main content of a document |
<mark> |
Defines marked/highlighted text |
<nav> |
Defines navigation links |
<section> |
Defines a section in a document |
<summary> |
Defines a visible heading for a <details element |
<time> |
Defines a date/time |
Tag | Description |
---|---|
<a> |
Defines a hyperlink |
Tag | Description |
---|---|
<ul> |
Defines an unordered list |
<ol> |
Defines an ordered list |
<li> |
Defines a list item |
<dl> |
Defines a description list |
<dt> |
Defines a term in a description list |
<dd> |
Describes the term in a description list |