tech | immersion...in 2006, the w3c indicated an interest to participate in the development of html5...

34
WELCOME TO TECH | IMMERSION Right Here. Right Now. HTML5 Presenter: J Michael Palermo IV http://palermo4.com @palermo4

Upload: others

Post on 01-Oct-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

WELCOME TO

TECH | IMMERSION

Right Here. Right Now. HTML5

Presenter: J Michael Palermo IV

http://palermo4.com

@palermo4

Page 2: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 3: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 4: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 5: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 6: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 7: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

…The purpose of this document type is

to serve as the basis for future

extended XHTML 'family' document

types, and to provide a consistent,

forward-looking document type cleanly

separated from the deprecated, legacy

functionality of HTML 4 [HTML4] that

was brought forward into the XHTML

1.0 [XHTML1] document types.

Page 8: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

You will use XHTML.

The Emperor has foreseen it.

Page 9: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

NOW

WHAT?

Page 10: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Exactly

Page 11: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Web

Hypertext

Applications

TechnologyWorking Group

www.whatwg.or

g

Page 12: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 13: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

In 2006, the W3C indicated

an interest to participate in

the development of HTML5

after all, and in 2007 formed a

working group chartered to

work with the WHATWG on

the development of the

HTML5 specification.

Page 14: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Apple loves HTML5.

Page 15: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Google loves HTML5.

Page 16: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Microsoft loves HTML5.

Page 17: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

It’s official: we have a logo!

http://www.w3.org/html/logo/

Page 18: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 19: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 20: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 21: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">

<head>

<meta http-equiv="Content-Type" content="text/html;

charset=utf-8" />

<title>Untitled Page</title>

<link rel="stylesheet" type="text/css" href="styles.css" />

</head>

<body>

<p>Hello World!</p>

</body></html>

Page 22: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">

<head>

<meta http-equiv="Content-Type" content="text/html;

charset=utf-8" />

<title>Untitled Page</title>

<link rel="stylesheet" type="text/css" href="styles.css" />

</head>

<body>

<p>Hello World!</p>

</body></html>

Page 23: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

<!DOCTYPE html>

<html lang="en">

<head>

<meta http-equiv="Content-Type" content="text/html;

charset=utf-8" />

<title>Untitled Page</title>

<link rel="stylesheet" type="text/css" href="styles.css" />

</head>

<body>

<p>Hello World!</p>

</body></html>

Page 24: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset=utf-8 />

<title>Untitled Page</title>

<link rel="stylesheet" type="text/css" href="styles.css" />

</head>

<body>

<p>Hello World!</p>

</body></html>

Page 25: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset=utf-8 />

<title>Untitled Page</title>

<link rel="stylesheet" href="styles.css" />

</head>

<body>

<p>Hello World!</p>

</body></html>

Page 26: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset=utf-8 />

<title>Untitled Page</title>

<link rel="stylesheet" href="styles.css" />

</head>

<body>

<p>Hello World!</p>

</body>

</html>

Page 27: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 28: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Top 20 Class Names

(http://code.google.com/webstats/)

Page 29: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Mapping Popular Class Names

Page 30: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Now, common layout

idioms get promoted to 1st

class <elements>

Page 31: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 32: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG
Page 33: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

DEMO

Page 34: TECH | IMMERSION...In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG

Thank you.