Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 -...

21
Introducti on to HTML5

Transcript of Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 -...

Page 1: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Introduction toHTML5

Page 2: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

History of HTML

HTML first published – Tim Berners-Lee1991

2012

2002 -

2009

2000

HTML 2.0

HTML 3.2

HTML 4.01

XHTML 1.0

XHTML 2.0

HTML5

1995

1997

1999

HTML5 is much more tolerant and can handle markup from all the prior versions.

Though HTML5 was published officially in 2012, it has been in development since 2004.

After HTML 4.01 was released, focus shifted to XHTML and its stricter standards.

XHTML 2.0 had even stricter standards than 1.0, rejecting web pages that did not comply. It fell out of favor gradually and was abandoned completely in 2009.

Page 3: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

What is HTML5?

HTML5 is the newest version of HTML It incorporates all features from earlier versions of HTML,

including the stricter XHTML. It adds a diverse set of new tools for the web developer

to use. It is still a work in progress. Browsers are still working

toward full HTML5 support. It may be a few more years – perhaps not until 2018 or later - before being fully defined and supported…and then? (perpetual beta)

Page 4: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Goals of HTML5

Support all existing web pages. With HTML5, there is no requirement to go back and revise older websites.

Reduce the need for external plugins and scripts to show website content.

Improve the semantic definition (i.e. meaning and purpose) of page elements.

Make the rendering of web content universal and independent of the device being used.

Handle web documents errors in a better and more consistent fashion.

Page 5: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

New Elements in HTML5

<figcaption><footer><header><hgroup><mark><nav>

<progress><section><source><svg><time><video>

These are just some of the new elements introduced in HTML5. You will be seeing more of these during this course.

<article><aside><audio><canvas><datalist><figure>

Page 6: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Other New Features in HTML5

Built-in audio and video support (without plugins) Enhanced form controls and attributes The Canvas (a way to draw directly on a web page) Drag and Drop functionality Support for CSS3 (the newer and more powerful version

of CSS) (CSS was not a part of html originally) More advanced features for web developers, such as

data storage and offline applications.

Page 7: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

First Look at HTML5

XHTML had the DOCTYPE declaration…

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

In HTML5, there is just one possible DOCTYPE declaration and it is simpler:

<!DOCTYPE html>

Just 15 characters!

The DOCTYPE tells the browser which type and version of document to expect. This should be the last time the DOCTYPE is ever changed. From now on, all future versions of HTML will use this same simplified declaration.

Page 8: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

The <html> Element

This is what the <html> element looked like in XHTML:

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

Again, HTML5 simplifies this line:

<html lang="en">

Each of the world’s major languages has a two-character code, e.g. Spanish = "es", French = "fr", German = "de", Chinese = "zh", Arabic = "ar".

The lang attribute in the <html> element declares which language the page content is in. Though not strictly required, it should always be specified, as it can assist search engines and screen readers.

Page 9: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

The <head> Section

Here is a typical XHTML <head> section:

<head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> <title>My First XHTML Page</title> <link rel="stylesheet" type="text/css" href="style.css" /></head>

And the HTML5 version:

Notice the simplified character set declaration, the shorter CSS stylesheet link text, and the removal of the trailing slashes for these two lines.

<head> <meta charset="utf-8"> <title>My First HTML5 Page</title> <link rel="stylesheet" href="style.css"></head>

Page 10: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Basic HTML5 Web Page

Putting the prior sections together, and now adding the <body> section and closing tags, we have our first complete web page in HTML5:

<!DOCTYPE html><html lang="en"><head> <meta charset="utf-8"> <title>My First HTML5 Page</title> <link rel="stylesheet" href="style.css"></head><body> <p>HTML5 is fun!</p></body></html>

Let's open this page in a web browser to see how it looks…

Page 11: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Viewing the HTML5 Web Page

Even though we used HTML5, the page looks exactly the same in a web browser as it would in XHTML. Without looking at the source code, web visitors will not know which version of HTML the page was created with.

Page 12: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

What is HTML?

HTML is a markup language for describing web documents (web pages).

HTML stands for Hyper Text Markup Language

A markup language is a set of markup tags

HTML documents are described by HTML tags

Each HTML tag describes different document content

Page 13: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Some basic HTML5… The DOCTYPE declaration defines the document type to

be HTML The text between <html> and </html> describes an

HTML document The text between <head> and </head> provides

information about the document The text between <title> and </title> provides a title for

the document The text between <body> and </body> describes the

visible page content The text between <h1> and </h1> describes a heading The text between <p> and </p> describes a paragraph

Page 14: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

HTML tags…

HTML tags are keywords (tag names) surrounded by angle brackets:

<tagname>content</tagname> HTML tags normally come in pairs like <p> and </p> The first tag in a pair is the start tag, the second tag is

the end tag The end tag is written like the start tag, but with a slash

before the tag name The start tag is often called the opening tag. The end

tag is often called the closing tag.

Page 15: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Web Browsers…

The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.

The browser does not display the HTML tags, but uses them to determine how to display the document:

Page 16: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

HTML page structure…

Go

Page 17: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Let’s try one…

Open TextWrangler & Type in:

<!DOCTYPE html><html><body><h1>My First Heading</h1><p>My first paragraph.</p></body></html>

Page 18: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Big Jump Ahead… <!DOCTYPE html>

<html><body><svg width="100" height="100"><circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" /></svg></body></html>

Page 19: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Basic HTML5 train & practice…

Go to www.tonydemars.com Go to the Monday space:

Begin overview of html.  Online html tutorials. 

Start working at HTML Editors

Like an in-class worksheet – see how you do

Keep working through each of these for the next 45 minutes

Page 20: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Some basic HTML5…

Note that for the rest of the week, there are continued html chapters – you must do some of these each day.

Do the practice quiz as you go along We will do in-class quizzes and HTML will be on the

tests Not a web-authoring class, but you do need to learn how

to work with the basics

Page 21: Introduction to HTML5. History of HTML HTML first published – Tim Berners-Lee 1991 2012 2002 - 2009 2000 HTML 2.0 HTML 3.2 HTML 4.01 XHTML 1.0 XHTML 2.0.

Other starting…

Project guidelines Starting skills training slots

Adobe audition

Final Cut Pro X

Camera use

Photography basics

Knowing the PA and overall system: PA help, camera

reservations, edit station assignment and reservations, technical

skills (uploading files, Google Drive, etc.)