-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro.html
37 lines (28 loc) · 1.08 KB
/
intro.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
<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 Introduction</title>
</head>
<body>
<h1>HTML5 Introduction</h1>
<h4>HTML5 will be the new standard of the internet</h4>
<h4>Rules set forth for creating the standard</h4>
<ul>
<li>New features should be based on HTML, CSS, DOM, and JavaScript</li>
<li>Reduce the need for external plugins (like Flash)</li>
<li>Better error handling</li>
<li>More markup to replace scripting</li>
<li>HTML5 should be device independent</li>
<li>The development process should be visible to the public</li>
</ul>
<h4>New Features added to HTML5</h4>
<ul>
<li>The canvas element for 2D drawing</li>
<li>The video and audio elements for media playback</li>
<li>Support for local storage</li>
<li>New content-specific elements, like article, footer, header, nav, section</li>
<li>New form controls, like calendar, date, time, email, url, search</li>
</ul>
<h4>Most browsers do not fully support html5 yet, but most do contain pieces that work</h4>
</body>
</html>