Results: 114
attributes "min", "max"
<input type="number" min="5" max="10">
min
and
max
attributes are used to define minimum and maximum values for the number input
attributes: "rows", "cols"
<textarea rows="30" cols="80"></textarea>
rows
is attribute to define height of the textarea and
cols
- for defining width
attribute "for"
<label for="inputID">some title</label><input type="text" id="inputID" size="50">
label
attribute
for
and
input
attribute
id
should be the same to tie these two elements together
attribute "size"
<input type="text" size="50">
this means the input will have enough width for 50 characters
bookmark
To create a bookmark we can use any block or inline containers (a, span, p, h1, div) with appropriate id value:
<h2 id="C4">Chapter 4</h2> and then there are two ways to create a link to the bookmark: 
1.  <h1 href="#C4">Jump to Chapter 4</h1>
2.  <a name="#C4">Jump to Chapter 4</a>
tag "meta"
<meta>
with
name
and
content
attributes contains meta information of the web page. These are commonly used meta names:
description
,
author
,
keywords
,
viewport
,.. Example of
author
meta tag
<meta name="author" content="Mike">
frameborder
frameborder="0"
gives zero width border to
<iframe>
caption
<caption>
goes inside
<thead>
and is title of the table. The title is centered horizontally.
caption
is above the first
tr
<table>
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
</table>
ol attribute "type"
Default type value is
1
Possible values for the attribute are:
1
,
A
,
a
,
I
,
i
With HTML5 web storage, websites can store data on a user's local computer. Before HTML5, we had to use JavaScript cookies to achieve this functionality. ... The Advantages of Web Storage
- More secure
- Faster
- Stores a larger amount of data
- Stored data is not sent with every server request
Note:
Local storage is per domain. All pages from one domain can store and access the same data.
Results: 114