-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_elements.html
84 lines (63 loc) · 2.53 KB
/
new_elements.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>HTML5 New Elements</title>
</head>
<body>
<h1>HTML5 New Elements</h1>
<h4>New Semantic/Structal Elements</h4>
<p>
article: defines an article<br />
aside: defines content aside from the page content<br />
bdi: isolates a part of text that might be formatted in a different direction from other text outside of it<br />
command: defines a command button that a user can invoke<br />
details: defines additional details that the user can view or hide<br />
summary: defines a visible heading for a details element<br />
figure: specifies self-contained context, like illustrations, diagrams, photos, code, listing, etc.<br />
footer: defines a footer for a document or section<br />
header: defines a header for a document or section<br />
hgroup: groups a set of h1 to h6 elements when a heading has multiple levels<br />
mark: defines marked/highlighted text<br />
meter: defines a scalar measurment within a known range (a gauge)<br />
nav: defines navigation links<br />
progress: represents the progress of a task<br />
ruby: defines a ruby annotation<br />
rt: defines an explanation/pronunciation of characters<br />
rp: defines what to show in browsers that do nto support ruby annotations<br />
section: defines a section in a document<br />
time: defines a date/time<br />
wbr: defines a possibel line-break<br />
</p>
<h4>New Media Elements</h4>
<p>
audio: defines sound content<br />
video: defines a video or movie<br />
source: defines multiple media resouces for video and audio<br />
embed: defines a container for an external application or interactive content (a plug-in)<br />
track: defines text tracks for video and audio
</p>
<h4>The new canvas element</h4>
<p>canvas: used to draw graphics, on the fly, via scripting (usually JavaScript)</p>
<h4>New Form Elemnts</h4>
<p>
datalist: specifies a list of pre-defined options for input controls<br />
keygen: defines a key-pair generator field (for forms)<br />
output: defines the result of a calculation
</p>
<h4>Removed elements</h4>
<ul>
<li>acronym</li>
<li>applet</li>
<li>basefont</li>
<li>big</li>
<li>center</li>
<li>dir</li>
<li>font</li>
<li>frame</li>
<li>frameset</li>
<li>noframes</li>
<li>strike</li>
<li>tt</li>
</ul>
</body>
</html>