0% found this document useful (0 votes)
27 views8 pages

Html5 Ingles

HTML5 is a revision of HTML that adds new elements and attributes to better support multimedia and rich Internet applications. Key goals of HTML5 include supporting multimedia on mobile devices through new tags like <video> and <audio>, and allowing new ways for users to interact with documents through drag and drop capabilities and offline editing. New elements in HTML5 include semantic elements like <header> and <footer>, new form controls, and graphic elements like <svg> and <canvas>. HTML5 also introduces new APIs for features like geolocation, drag and drop, local storage, and web workers.

Uploaded by

Cesar Bedolla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views8 pages

Html5 Ingles

HTML5 is a revision of HTML that adds new elements and attributes to better support multimedia and rich Internet applications. Key goals of HTML5 include supporting multimedia on mobile devices through new tags like <video> and <audio>, and allowing new ways for users to interact with documents through drag and drop capabilities and offline editing. New elements in HTML5 include semantic elements like <header> and <footer>, new form controls, and graphic elements like <svg> and <canvas>. HTML5 also introduces new APIs for features like geolocation, drag and drop, local storage, and web workers.

Uploaded by

Cesar Bedolla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 8

WHAT IS HTML5?

Is a revisin of the Hypertext Markup


Language (HTML), the standard
programming language for describing the
contents and appearance of Web pages.

GOALS FOR HTML5

is to support for multimedia on mobile devices. New syntactic features were


introduced to support this, such as video, audio and canvas tags. HTML5 also
introduces new features which can really change the way users interact with
documents including:

Newparsingrules for enhanced flexibility

Newattributes

Elimination of outmoded or redundant attributes

Drag and drop capabilities from one HTML5 document to another

Offline editing

Messaging enhancements

Detailed rules forparsing

MIMEandprotocolhandler registration

A common standard for storing data in SQL databases (Web SQL)

WHAT IS NEW IN HTML5?


- The DOCTYPE declaration for html5 is very simple:
<!DOCTYPEhtml>

The character encoding (charset) declaration is also very simple:


<metacharset="UTF-8">

- HTML5 Example:
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title>Title of the document</title>
</head>
<body>
Content of the document......
</body>
</html>

NEW HTML5 ELEMENTS

The most interesting new elements are:

Newsemanticelements like <header>, <footer>, <article>, and <section>.

New formcontrol attributeslike number, date, time, calendar, and range.

Newgraphicelements: <svg> and <canvas>.

Newmultimediaelements: <audio> and <video>.

In the chapterHTML5 Support, you will learn how to "teach" old browsers to handle
HTML5 semantic.

NEW HTML5 APIs (APPLICATION


PROGRAMMING INTERFACES)

The most interesting new API's are:

HTML Geolocation

HTML Drag and Drop

HTML Local Storage

HTML Application Cache

HTML Web Workers

HTML SSE

Local storage is a powerful replacement for cookies.

ELEMENTS REMOVED IN HTML5


Element

Use instead

<acronym>

<abbr>

<applet>

<object>

<basefont>

CSS

<big>

CSS

<center>

CSS

<dir>

<ul>

<font>

CSS

<frame>

<frameset>

<noframes>

<strike>

CSS

<tt>

CSS

VERSIONS OF HTML
Version

Year

Tim Berners-Lee invented www

1989

Tim Berners-Lee invented HTML

1991

Dave Raggett drafted HTML+

1993

HTML Working Group defined HTML 2.0

1995

W3C Recommended HTML 3.2

1997

W3C Recommended HTML 4.01

1999

W3C Recommended XHTML 1.0

2000

HTML5 WHATWG First Public Draft

2008

HTML5 WHATWG Living Standard

2012

HTML5 W3C Final Recommendation

2014

FIN!

You might also like