What is New in HTML5?

Jak
Jak
Member
858 Points
132 Posts

What is New in HTML5?

Views: 9253
Total Answered: 2
Total Marked As Answer: 0
Posted On: 25-Feb-2015 19:49

Share:   fb twitter linkedin
Answers
Rahul Maurya
Rahul M...
Teacher
4822 Points
23 Posts
         

The DOCTYPE declaration for HTML5:

<!DOCTYPE html>

The character encoding (charset) declaration:

<meta charset="UTF-8">
 
Example:
 
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>

<body>
Content of the document......
</body>

</html>
Posted On: 25-Feb-2015 19:55
Rahul Maurya
Rahul M...
Teacher
4822 Points
23 Posts
         

New semantic elements like <header>, <footer>, <article>, and <section>.

New form control attributes like number, date, time, calendar, and range.

New graphic elements: <svg> and <canvas>.

New multimedia elements: <audio> and <video>.

Posted On: 25-Feb-2015 19:56
 Log In to Chat