SlideShare a Scribd company logo
1 of 70
Download to read offline
HTML5

THE PARTS YOU CARE ABOUT
An original presentation by David Wesst / @davidwesst

Prarie Dev Con 2013 - Saskatoon, SK
DAVID WESST

FROM WINNIPEG, MANITOBA
SYSTEMS ANALYST, UNIVERSITY OF MANITOBA (FACULTY OF
MEDICINE)
MICROSOFT MVP, INTERNET EXPLORER
IE USER AGENT USERAGENTS.IE
PRODUCER, BREWPUB STUDIOS
DAVID WESST

@DAVIDWESST ON TWITTER
DAVIDWESST.COM ON THE WEB
DAVIDWESST.COM/BLOG ON THE BLOGOSPHERE
DW [AT] DAVIDWESST.COM ON EMAIL
FOLLOW ALONG

HTTP://D.WES.ST/DW-SLIDES
SLIDES AND DEMOS
AVAILABLE AFTERWARDS
HTTP://D.WES.ST/DW-PRESENTS
THE POINT...
To answer one of these questions:
What is HTML5 for?
What makes up HTML5?
What HTML5 tools are out there for me to use?
Does HTML5 even matter to you?
THE PLAN
How are we going to understand these points?
Documents Evolved
Really Defining HTML5
HTML5 Hardware (i.e. The Toolbox)
DEMO PREREQUISITES
HTML Audio (.mp3) is supported
HTML Audio (.ogg) is supported
HTML Canvas is supported
CSS Border Radius is supported
Go Back
DOCUMENTS EVOLVED
DOCUMENTS EVOLVED
WHAT IS A DOCUMENT?
DOCUMENTS EVOLVED
Documents create a paper reality we call proof.
Mason Cooley
DOCUMENTS EVOLVED
DOCUMENTS EVOLVED
DOCUMENTS EVOLVED
DOCUMENTS EVOLVED
...a collection of data (images, text, audio, video, etc.)
...a collection of data sources (references, hyperlinking)
...a product of collaboration
What we did not imagine was a Web of people,
but a Web of documents.
Dale Dougherty
WHAT DOES HTML HAVE TO DO WITH A
DOCUMENT?
HTML has always been for creating and sharing documents.
...our interpretation of what a document is has evolved.
REALLY DEFINING HTML5
REALLY DEFINING HTML5

THE GOAL:
TO UPDATE THE STANDARDS FOR THE WEB TO REPRESENT
HOW THE WORLD USES THE WEB TODAY.
REALLY DEFINING HTML5
How do you do this with plain old markup?

YOU DON'T. (WE HAVEN'T DONE THAT IN YEARS)
HTML5 DEFINES FEATURES USING THREE (3)
CORE TECHNOLOGIES:
HTML | for Defining Documents
CSS | for Styling Documents
JavaScript | for Making Documents Interactive
REALLY DEFINING HTML5
HTML5 features are divided into eight (8) separate groups:
Semantics
Offline & Storage
Device Access
Connectivity
Multimedia
3D, Graphics & Effects
Performance & Integration
CSS3
HTML5 TOOLS &
BUILDING MATERIALS
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | STYLE | INTERACTION
HTML Markup | Definition
CSS3 | Style
JavaScript | Interaction
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

DEMO
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML
Your IDE or Editor Experience

MICROSOFT WEBMATRIX
Free
Provides HTML, JavaScript, and CSS3 Auto-Complete
Focuses on Microsoft & Open Source technologies for web
Community Extensions to add more HTML5 development
support
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML
Your IDE or Editor Experience

ECLIPSE W/ NODECLISPE, WEB PLATFORM TOOLS, APTANA
Free and Open Source
Provides strong JavaScript Support
Aptana most Web Focused
Combine Favourite Plugins to build your ideal environment
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML
Your IDE or Editor Experience

CLOUD 9 (HTTP://C9.IO)
Hosted IDE
Free & Open Source
HTML5, Ruby, PHP, and Node
Provides Terminal, MySQL, and link to Github & Bitbucket
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

VISUAL STUDIO 2012/2013
Free-ish (Free Editions Available)
Microsoft Development Focused
Provides HTML, JavaScript, and CSS3 Auto-Complete
Number of Create Extensions to support HTML5
Overhauled Web Development Editor Experience
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

A FEW OTHERS...
Webstorm IDE
Notepad++
Sublime Text, Vi, Emacs
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

WHAT HTML5 EDITOR DO YOU USE?
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

DEMO - ECLIPSE
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

TONS OF NEW ELEMENTS! (FOR STRUCTURE AND SEMANTICS)
<article>
<aside>
<bdi>
<command>
<details>
<figure>
<figcaption>
<footer>
<header>
<hgroup>
<mark>
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

TONS OF NEW ELEMENTS! (MEDIA)
<audio>
<video>
<source>
<embed>
<track>
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

TONS OF NEW ELEMENTS! (FOR DRAWING)
<canvas>
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

TONS OF NEW ELEMENTS! (FOR FORM)
<datalist>
<keygen>
<output>
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

REMOVED OLD TIMEY ELEMENTS!
<acronym>
<applet>
<basefont>
<big>
<center>
<dir>
<font>
<frame>
<frameset>
<noframes>
<strike>
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

ALL YOU NEED IS THE NEW DOCTYPE
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

DEMO: AUDIO ELEMENT
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML - DEMO

AUDIO ELEMENT (PART 1) - DEFAULT AUDIO PLAYER
0:35
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML - DEMO

AUDIO ELEMENT (PART 2) - MULTIPLE SOURCE FILES
0:35
HTML5 TOOLS & BUILDING MATERIALS
DEFINITION | HTML

WHAT ABOUT BACKWARDS COMPATIBILITY? (I.E. INTERNET
EXPLORER)
COMING UP LATER IN THE PRESENTATION, I PROMISE!
HTML5 TOOLS & BUILDING MATERIALS
STYLE | CSS3 - COMPILERS

SASS - SYNTACTICALLY AWESOME STYLESHEETS
http://sass-lang.com/
Improves CSS/ syntax with extra language features
Variables
Nested Rules
Mixins (Rules with Parameters)
Selector Inheritance
Available as Ruby Gem
HTML5 TOOLS & BUILDING MATERIALS
STYLE | CSS3 - COMPILERS

LESS - DYNAMIC STYLESHEET LANGUAGE
http://lesscss.org/
Similar to SASS. Improves CSS syntax with extra language
features
Variables
Nested Rules
Mixins (Rules with parameters)
Functions and Operations
JavaScript Based
Client and Server Options
HTML5 TOOLS & BUILDING MATERIALS
STYLE | CSS3 - COMPILERS

OPTIONAL DEMO - LESS
HTML5 TOOLS & BUILDING MATERIALS
STYLE | CSS3 - FRAMEWORKS

FRAMWORKS
Twitter Bootstrap
Semantic UI
Metro UI
HTML5 TOOLS & BUILDING MATERIALS
STYLE | CSS3 - FRAMEWORKS
Semantic Grid
Blueprint Framework
jQuery UI CSS Framework
(http://docs.jquery.com/UI/Theming/API)
YUI CSS Components
HTML5 TOOLS & BUILDING MATERIALS
STYLE | CSS3
Media Queries
Border-Radius
Background Gradients
CSS Animations and Transitions
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - LIBRARIES

MODERNIZR
http://modernizr.com/
Makes your HTML5 Fully Browser Compatible
Open Source with MIT License
Handles IE support just by adding the library
Check whether client support specific HTML5 features
Can check in both CSS and JavaScript
Adds extra tooling for performance
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - LIBRARIES

DEMO - MODERNIZR
Go to the Demo
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - LIBRARIES
There are a TON of libraries avilable thanks to the open source
community.
Before you start writing your own, find out if someone else has
done it before
Github
Bitbucket
CodePlex
Google Code
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - COMPILERS

COFFEESCRIPT
http://coffeescript.org/
"...a little language that compiles into JavaScript"
Cleaner more Readable Code
Ruby-like Syntax
Uses JavaScript Lint
Produces readable JavaScript Code
Installs from NPM
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - COMPILERS

TYPESCRIPT
http://typescript.org/
Microsoft's attempts at ECMASCRIPT next
ActiveOpen Source Project
Is subset of JavaScript (i.e. JavaScript is valid TypeScript)
Compiles down to JavaScript
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - TESTING

JASMINE
https://github.com/pivotal/jasmine/wiki
Behaviour Driven Development (BDD)
Resembles RSpec
Works with multiple platforms (ASP.NET, NodeJS, Ruby, etc.)
No external dependencies
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - TESTING

QUNIT
http://qunitjs.com/
Unit Testing Framework
Developed by jQuery
No external dependencies (not even jQuery)
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - TESTING

MOCHA
http://visionmedia.github.io/mocha/
BDD based framework
Resembles RSpec
Works with both client and server (NodeJS)
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT - TESTING

DEMO - BDD WITH
JASMINE
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT
JavaScript APIs
Media (i.e Audio and Video)
Text Track (i.e. Subtitles)
Web Crypto
Encrypted Media Extensions (EME)
Offline Web Applications / Application Cache
User Interaction
History
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT
JavaScript APIs

DEMO - MEDIA API
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT
Play
Pause
Volume Up
Volume Down
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT
Non-HTML5 Spec JavaScript APIs
Canvas (2D Context)
Cross Channel Messaging
Microdata
Web Workers
Web Storage / IndexedDB
Server-Sent Events
HTML5 TOOLS & BUILDING MATERIALS
INTERACTION | JAVASCRIPT
Non-HTML5 Spec JavaScript APIs

DEMO - CANVAS API
A QUICK RECAP
THE POINT...
To answer one of these questions:
What is HTML5 for?
What makes up HTML5?
What HTML5 tools are out there for me to use?
Does HTML5 even matter to you?
THE PLAN
How are we going to understand these points?
Documents Evolved
Really Defining HTML5
HTML5 Hardware (i.e. The Toolbox)
NEXT STEPS
NEXT STEPS
Go to Modern.IE and explore
Read an HTML5 book or Tutorial
Download and run an HTML5 editor (e.g. WebMatrix)
Upgrade an app with Modernizr and the new DOCTYPE
DAVID WESST

@DAVIDWESST ON TWITTER
DAVIDWESST.COM ON THE WEB
DAVIDWESST.COM/BLOG ON THE BLOGOSPHERE
DW [AT] DAVIDWESST.COM ON EMAIL

More Related Content

What's hot

Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewDiacode
 
Style Guides Are The New Photoshop (Fronteers 2012)
Style Guides Are The New Photoshop (Fronteers 2012)Style Guides Are The New Photoshop (Fronteers 2012)
Style Guides Are The New Photoshop (Fronteers 2012)Stephen Hay
 
Wrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web ApplicationsWrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web ApplicationsRyan Roemer
 
Angular mobile angular_u
Angular mobile angular_uAngular mobile angular_u
Angular mobile angular_uDoris Chen
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesVitaly Friedman
 
What is front-end development ?
What is front-end development ?What is front-end development ?
What is front-end development ?Mahmoud Shaker
 
Going native with html5 web components
Going native with html5 web componentsGoing native with html5 web components
Going native with html5 web componentsJames York
 
Dreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile designDreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile designDee Sadler
 
The Future Of Web Frameworks
The Future Of Web FrameworksThe Future Of Web Frameworks
The Future Of Web FrameworksMatt Raible
 
Javascript State of the Union 2015 - English
Javascript State of the Union 2015 - EnglishJavascript State of the Union 2015 - English
Javascript State of the Union 2015 - EnglishHuge
 
Untangling the web11
Untangling the web11Untangling the web11
Untangling the web11Derek Jacoby
 
Unobtrusive JavaScript with jQuery
Unobtrusive JavaScript with jQueryUnobtrusive JavaScript with jQuery
Unobtrusive JavaScript with jQuerySimon Willison
 
Seminar: Become a Reliable Web Programmer
Seminar: Become a Reliable Web ProgrammerSeminar: Become a Reliable Web Programmer
Seminar: Become a Reliable Web ProgrammerAchmad Solichin
 
Building mobile applications with DrupalGap
Building mobile applications with DrupalGapBuilding mobile applications with DrupalGap
Building mobile applications with DrupalGapAlex S
 
Architecture & Workflow of Modern Web Apps
Architecture & Workflow of Modern Web AppsArchitecture & Workflow of Modern Web Apps
Architecture & Workflow of Modern Web AppsRasheed Waraich
 
Scalable front-end architecture with Bootstrap 3 + Atomic CSS
Scalable front-end architecture with Bootstrap 3 + Atomic CSSScalable front-end architecture with Bootstrap 3 + Atomic CSS
Scalable front-end architecture with Bootstrap 3 + Atomic CSSHayden Bleasel
 
How to write good quality code
How to write good quality codeHow to write good quality code
How to write good quality codeHayden Bleasel
 
What Web Framework To Use?
What Web Framework To Use?What Web Framework To Use?
What Web Framework To Use?Kasra Khosravi
 
Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017AmarInfotech
 

What's hot (20)

Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overview
 
Style Guides Are The New Photoshop (Fronteers 2012)
Style Guides Are The New Photoshop (Fronteers 2012)Style Guides Are The New Photoshop (Fronteers 2012)
Style Guides Are The New Photoshop (Fronteers 2012)
 
Wrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web ApplicationsWrangling Large Scale Frontend Web Applications
Wrangling Large Scale Frontend Web Applications
 
Angular mobile angular_u
Angular mobile angular_uAngular mobile angular_u
Angular mobile angular_u
 
Road to Rails
Road to RailsRoad to Rails
Road to Rails
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and Techniques
 
What is front-end development ?
What is front-end development ?What is front-end development ?
What is front-end development ?
 
Going native with html5 web components
Going native with html5 web componentsGoing native with html5 web components
Going native with html5 web components
 
Dreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile designDreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile design
 
The Future Of Web Frameworks
The Future Of Web FrameworksThe Future Of Web Frameworks
The Future Of Web Frameworks
 
Javascript State of the Union 2015 - English
Javascript State of the Union 2015 - EnglishJavascript State of the Union 2015 - English
Javascript State of the Union 2015 - English
 
Untangling the web11
Untangling the web11Untangling the web11
Untangling the web11
 
Unobtrusive JavaScript with jQuery
Unobtrusive JavaScript with jQueryUnobtrusive JavaScript with jQuery
Unobtrusive JavaScript with jQuery
 
Seminar: Become a Reliable Web Programmer
Seminar: Become a Reliable Web ProgrammerSeminar: Become a Reliable Web Programmer
Seminar: Become a Reliable Web Programmer
 
Building mobile applications with DrupalGap
Building mobile applications with DrupalGapBuilding mobile applications with DrupalGap
Building mobile applications with DrupalGap
 
Architecture & Workflow of Modern Web Apps
Architecture & Workflow of Modern Web AppsArchitecture & Workflow of Modern Web Apps
Architecture & Workflow of Modern Web Apps
 
Scalable front-end architecture with Bootstrap 3 + Atomic CSS
Scalable front-end architecture with Bootstrap 3 + Atomic CSSScalable front-end architecture with Bootstrap 3 + Atomic CSS
Scalable front-end architecture with Bootstrap 3 + Atomic CSS
 
How to write good quality code
How to write good quality codeHow to write good quality code
How to write good quality code
 
What Web Framework To Use?
What Web Framework To Use?What Web Framework To Use?
What Web Framework To Use?
 
Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017Latest Javascript MVC & Front End Frameworks 2017
Latest Javascript MVC & Front End Frameworks 2017
 

Similar to HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK

Doing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code Camp
Doing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code CampDoing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code Camp
Doing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code CampChris Love
 
Teched India Vijay Interop Track
Teched India Vijay Interop TrackTeched India Vijay Interop Track
Teched India Vijay Interop Trackvijayrvr
 
Vijay Mix Presentation
Vijay Mix PresentationVijay Mix Presentation
Vijay Mix Presentationvijayrvr
 
Cytoscape and the Web
Cytoscape and the WebCytoscape and the Web
Cytoscape and the WebKeiichiro Ono
 
Build Apps Using Dynamic Languages
Build Apps Using Dynamic LanguagesBuild Apps Using Dynamic Languages
Build Apps Using Dynamic LanguagesWes Yanaga
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | IntroductionJohnTaieb
 
PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...
PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...
PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...Codemotion
 
PHP is the King, nodejs the prince and python the fool
PHP is the King, nodejs the prince and python the foolPHP is the King, nodejs the prince and python the fool
PHP is the King, nodejs the prince and python the foolAlessandro Cinelli (cirpo)
 
State of modern web technologies: an introduction
State of modern web technologies: an introductionState of modern web technologies: an introduction
State of modern web technologies: an introductionMichael Ahearn
 
Vijay Oscon
Vijay OsconVijay Oscon
Vijay Osconvijayrvr
 
Html5 workshop part 1
Html5 workshop part 1Html5 workshop part 1
Html5 workshop part 1NAILBITER
 
What's New in Visual Studio 2010
What's New in Visual Studio 2010What's New in Visual Studio 2010
What's New in Visual Studio 2010Adil Mughal
 
Building Rich Applications with Appcelerator
Building Rich Applications with AppceleratorBuilding Rich Applications with Appcelerator
Building Rich Applications with AppceleratorMatt Raible
 
Aspnet2.0 Introduction
Aspnet2.0 IntroductionAspnet2.0 Introduction
Aspnet2.0 IntroductionChanHan Hy
 
Web development concepts using microsoft technologies
Web development concepts using microsoft technologiesWeb development concepts using microsoft technologies
Web development concepts using microsoft technologiesHosam Kamel
 
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)Brian Culver
 
내꺼내꺼
내꺼내꺼내꺼내꺼
내꺼내꺼misty915
 
2017 03 25 Microsoft Hacks, How to code efficiently
2017 03 25 Microsoft Hacks, How to code efficiently2017 03 25 Microsoft Hacks, How to code efficiently
2017 03 25 Microsoft Hacks, How to code efficientlyBruno Capuano
 
SharePoint Conference North America - Converting your JavaScript to SPFX
SharePoint Conference North America - Converting your JavaScript to SPFXSharePoint Conference North America - Converting your JavaScript to SPFX
SharePoint Conference North America - Converting your JavaScript to SPFXMark Rackley
 
Convert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hour
Convert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hourConvert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hour
Convert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hourBrian Culver
 

Similar to HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK (20)

Doing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code Camp
Doing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code CampDoing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code Camp
Doing Modern Web, aka JavaScript and HTML5 in the Enterprise NYC Code Camp
 
Teched India Vijay Interop Track
Teched India Vijay Interop TrackTeched India Vijay Interop Track
Teched India Vijay Interop Track
 
Vijay Mix Presentation
Vijay Mix PresentationVijay Mix Presentation
Vijay Mix Presentation
 
Cytoscape and the Web
Cytoscape and the WebCytoscape and the Web
Cytoscape and the Web
 
Build Apps Using Dynamic Languages
Build Apps Using Dynamic LanguagesBuild Apps Using Dynamic Languages
Build Apps Using Dynamic Languages
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | Introduction
 
PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...
PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...
PHP is the king, nodejs is the prince and Python is the fool - Alessandro Cin...
 
PHP is the King, nodejs the prince and python the fool
PHP is the King, nodejs the prince and python the foolPHP is the King, nodejs the prince and python the fool
PHP is the King, nodejs the prince and python the fool
 
State of modern web technologies: an introduction
State of modern web technologies: an introductionState of modern web technologies: an introduction
State of modern web technologies: an introduction
 
Vijay Oscon
Vijay OsconVijay Oscon
Vijay Oscon
 
Html5 workshop part 1
Html5 workshop part 1Html5 workshop part 1
Html5 workshop part 1
 
What's New in Visual Studio 2010
What's New in Visual Studio 2010What's New in Visual Studio 2010
What's New in Visual Studio 2010
 
Building Rich Applications with Appcelerator
Building Rich Applications with AppceleratorBuilding Rich Applications with Appcelerator
Building Rich Applications with Appcelerator
 
Aspnet2.0 Introduction
Aspnet2.0 IntroductionAspnet2.0 Introduction
Aspnet2.0 Introduction
 
Web development concepts using microsoft technologies
Web development concepts using microsoft technologiesWeb development concepts using microsoft technologies
Web development concepts using microsoft technologies
 
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
Convert your Full Trust Solutions to the SharePoint Framework (SPFx)
 
내꺼내꺼
내꺼내꺼내꺼내꺼
내꺼내꺼
 
2017 03 25 Microsoft Hacks, How to code efficiently
2017 03 25 Microsoft Hacks, How to code efficiently2017 03 25 Microsoft Hacks, How to code efficiently
2017 03 25 Microsoft Hacks, How to code efficiently
 
SharePoint Conference North America - Converting your JavaScript to SPFX
SharePoint Conference North America - Converting your JavaScript to SPFXSharePoint Conference North America - Converting your JavaScript to SPFX
SharePoint Conference North America - Converting your JavaScript to SPFX
 
Convert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hour
Convert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hourConvert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hour
Convert your Full Trust Solutions to the SharePoint Framework (SPFx) in 1 hour
 

Recently uploaded

Corporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdfCorporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdfProbe Gold
 
Q1 Quarterly Update - April 16, 2024.pdf
Q1 Quarterly Update - April 16, 2024.pdfQ1 Quarterly Update - April 16, 2024.pdf
Q1 Quarterly Update - April 16, 2024.pdfProbe Gold
 
the 25 most beautiful words for a loving and lasting relationship.pdf
the 25 most beautiful words for a loving and lasting relationship.pdfthe 25 most beautiful words for a loving and lasting relationship.pdf
the 25 most beautiful words for a loving and lasting relationship.pdfFrancenel Paul
 
9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCR
9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCR9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCR
9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCRSapana Sha
 
WheelTug PLC Pitch Deck | Investor Insights | April 2024
WheelTug PLC Pitch Deck | Investor Insights | April 2024WheelTug PLC Pitch Deck | Investor Insights | April 2024
WheelTug PLC Pitch Deck | Investor Insights | April 2024Hector Del Castillo, CPM, CPMM
 
9654467111 Call Girls In Katwaria Sarai Short 1500 Night 6000
9654467111 Call Girls In Katwaria Sarai Short 1500 Night 60009654467111 Call Girls In Katwaria Sarai Short 1500 Night 6000
9654467111 Call Girls In Katwaria Sarai Short 1500 Night 6000Sapana Sha
 
Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...
Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...
Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...USDAReapgrants.com
 
Collective Mining | Corporate Presentation - April 2024
Collective Mining | Corporate Presentation - April 2024Collective Mining | Corporate Presentation - April 2024
Collective Mining | Corporate Presentation - April 2024CollectiveMining1
 
The Concept of Humanity in Islam and its effects at future of humanity
The Concept of Humanity in Islam and its effects at future of humanityThe Concept of Humanity in Islam and its effects at future of humanity
The Concept of Humanity in Islam and its effects at future of humanityJohanAspro
 
Best investment platform in india - falcon invoice discounting
Best investment platform in india - falcon invoice discountingBest investment platform in india - falcon invoice discounting
Best investment platform in india - falcon invoice discountingFalcon Invoice Discounting
 
Corporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdfCorporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdfProbe Gold
 
Nicola Mining Inc. Corporate Presentation April 2024
Nicola Mining Inc. Corporate Presentation April 2024Nicola Mining Inc. Corporate Presentation April 2024
Nicola Mining Inc. Corporate Presentation April 2024nicola_mining
 
Basic Accountants in|TaxlinkConcept.pdf
Basic  Accountants in|TaxlinkConcept.pdfBasic  Accountants in|TaxlinkConcept.pdf
Basic Accountants in|TaxlinkConcept.pdftaxlinkcpa
 
slideshare_2404_presentation materials_en.pdf
slideshare_2404_presentation materials_en.pdfslideshare_2404_presentation materials_en.pdf
slideshare_2404_presentation materials_en.pdfsansanir
 

Recently uploaded (19)

young call girls in Yamuna Vihar 🔝 9953056974 🔝 Delhi escort Service
young  call girls in   Yamuna Vihar 🔝 9953056974 🔝 Delhi escort Serviceyoung  call girls in   Yamuna Vihar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Yamuna Vihar 🔝 9953056974 🔝 Delhi escort Service
 
Corporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdfCorporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdf
 
Q1 Quarterly Update - April 16, 2024.pdf
Q1 Quarterly Update - April 16, 2024.pdfQ1 Quarterly Update - April 16, 2024.pdf
Q1 Quarterly Update - April 16, 2024.pdf
 
the 25 most beautiful words for a loving and lasting relationship.pdf
the 25 most beautiful words for a loving and lasting relationship.pdfthe 25 most beautiful words for a loving and lasting relationship.pdf
the 25 most beautiful words for a loving and lasting relationship.pdf
 
9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCR
9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCR9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCR
9654467111 Low Rate Call Girls In Tughlakabad, Delhi NCR
 
WheelTug PLC Pitch Deck | Investor Insights | April 2024
WheelTug PLC Pitch Deck | Investor Insights | April 2024WheelTug PLC Pitch Deck | Investor Insights | April 2024
WheelTug PLC Pitch Deck | Investor Insights | April 2024
 
young call girls in Hauz Khas,🔝 9953056974 🔝 escort Service
young call girls in Hauz Khas,🔝 9953056974 🔝 escort Serviceyoung call girls in Hauz Khas,🔝 9953056974 🔝 escort Service
young call girls in Hauz Khas,🔝 9953056974 🔝 escort Service
 
9654467111 Call Girls In Katwaria Sarai Short 1500 Night 6000
9654467111 Call Girls In Katwaria Sarai Short 1500 Night 60009654467111 Call Girls In Katwaria Sarai Short 1500 Night 6000
9654467111 Call Girls In Katwaria Sarai Short 1500 Night 6000
 
Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...
Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...
Leveraging USDA Rural Development Grants for Community Growth and Sustainabil...
 
young Call girls in Dwarka sector 1🔝 9953056974 🔝 Delhi escort Service
young Call girls in Dwarka sector 1🔝 9953056974 🔝 Delhi escort Serviceyoung Call girls in Dwarka sector 1🔝 9953056974 🔝 Delhi escort Service
young Call girls in Dwarka sector 1🔝 9953056974 🔝 Delhi escort Service
 
Collective Mining | Corporate Presentation - April 2024
Collective Mining | Corporate Presentation - April 2024Collective Mining | Corporate Presentation - April 2024
Collective Mining | Corporate Presentation - April 2024
 
The Concept of Humanity in Islam and its effects at future of humanity
The Concept of Humanity in Islam and its effects at future of humanityThe Concept of Humanity in Islam and its effects at future of humanity
The Concept of Humanity in Islam and its effects at future of humanity
 
Call Girls in South Ex⎝⎝9953056974⎝⎝ Escort Delhi NCR
Call Girls in South Ex⎝⎝9953056974⎝⎝ Escort Delhi NCRCall Girls in South Ex⎝⎝9953056974⎝⎝ Escort Delhi NCR
Call Girls in South Ex⎝⎝9953056974⎝⎝ Escort Delhi NCR
 
Best investment platform in india - falcon invoice discounting
Best investment platform in india - falcon invoice discountingBest investment platform in india - falcon invoice discounting
Best investment platform in india - falcon invoice discounting
 
Corporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdfCorporate Presentation Probe April 2024.pdf
Corporate Presentation Probe April 2024.pdf
 
Nicola Mining Inc. Corporate Presentation April 2024
Nicola Mining Inc. Corporate Presentation April 2024Nicola Mining Inc. Corporate Presentation April 2024
Nicola Mining Inc. Corporate Presentation April 2024
 
Basic Accountants in|TaxlinkConcept.pdf
Basic  Accountants in|TaxlinkConcept.pdfBasic  Accountants in|TaxlinkConcept.pdf
Basic Accountants in|TaxlinkConcept.pdf
 
slideshare_2404_presentation materials_en.pdf
slideshare_2404_presentation materials_en.pdfslideshare_2404_presentation materials_en.pdf
slideshare_2404_presentation materials_en.pdf
 
young call girls in Govindpuri 🔝 9953056974 🔝 Delhi escort Service
young call girls in Govindpuri 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Govindpuri 🔝 9953056974 🔝 Delhi escort Service
young call girls in Govindpuri 🔝 9953056974 🔝 Delhi escort Service
 

HTML5: The Parts You Care About - 4/Nov/13 - PrDC Saskatoon, SK

  • 1.
  • 2. HTML5 THE PARTS YOU CARE ABOUT An original presentation by David Wesst / @davidwesst Prarie Dev Con 2013 - Saskatoon, SK
  • 3. DAVID WESST FROM WINNIPEG, MANITOBA SYSTEMS ANALYST, UNIVERSITY OF MANITOBA (FACULTY OF MEDICINE) MICROSOFT MVP, INTERNET EXPLORER IE USER AGENT USERAGENTS.IE PRODUCER, BREWPUB STUDIOS
  • 4. DAVID WESST @DAVIDWESST ON TWITTER DAVIDWESST.COM ON THE WEB DAVIDWESST.COM/BLOG ON THE BLOGOSPHERE DW [AT] DAVIDWESST.COM ON EMAIL
  • 6. SLIDES AND DEMOS AVAILABLE AFTERWARDS HTTP://D.WES.ST/DW-PRESENTS
  • 7. THE POINT... To answer one of these questions: What is HTML5 for? What makes up HTML5? What HTML5 tools are out there for me to use? Does HTML5 even matter to you?
  • 8. THE PLAN How are we going to understand these points? Documents Evolved Really Defining HTML5 HTML5 Hardware (i.e. The Toolbox)
  • 9. DEMO PREREQUISITES HTML Audio (.mp3) is supported HTML Audio (.ogg) is supported HTML Canvas is supported CSS Border Radius is supported Go Back
  • 12. DOCUMENTS EVOLVED Documents create a paper reality we call proof. Mason Cooley
  • 16. DOCUMENTS EVOLVED ...a collection of data (images, text, audio, video, etc.) ...a collection of data sources (references, hyperlinking) ...a product of collaboration
  • 17. What we did not imagine was a Web of people, but a Web of documents. Dale Dougherty
  • 18. WHAT DOES HTML HAVE TO DO WITH A DOCUMENT? HTML has always been for creating and sharing documents. ...our interpretation of what a document is has evolved.
  • 20. REALLY DEFINING HTML5 THE GOAL: TO UPDATE THE STANDARDS FOR THE WEB TO REPRESENT HOW THE WORLD USES THE WEB TODAY.
  • 21. REALLY DEFINING HTML5 How do you do this with plain old markup? YOU DON'T. (WE HAVEN'T DONE THAT IN YEARS)
  • 22. HTML5 DEFINES FEATURES USING THREE (3) CORE TECHNOLOGIES: HTML | for Defining Documents CSS | for Styling Documents JavaScript | for Making Documents Interactive
  • 23. REALLY DEFINING HTML5 HTML5 features are divided into eight (8) separate groups: Semantics Offline & Storage Device Access Connectivity Multimedia 3D, Graphics & Effects Performance & Integration CSS3
  • 25. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | STYLE | INTERACTION HTML Markup | Definition CSS3 | Style JavaScript | Interaction
  • 26. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML DEMO
  • 27. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML Your IDE or Editor Experience MICROSOFT WEBMATRIX Free Provides HTML, JavaScript, and CSS3 Auto-Complete Focuses on Microsoft & Open Source technologies for web Community Extensions to add more HTML5 development support
  • 28. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML Your IDE or Editor Experience ECLIPSE W/ NODECLISPE, WEB PLATFORM TOOLS, APTANA Free and Open Source Provides strong JavaScript Support Aptana most Web Focused Combine Favourite Plugins to build your ideal environment
  • 29. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML Your IDE or Editor Experience CLOUD 9 (HTTP://C9.IO) Hosted IDE Free & Open Source HTML5, Ruby, PHP, and Node Provides Terminal, MySQL, and link to Github & Bitbucket
  • 30. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML VISUAL STUDIO 2012/2013 Free-ish (Free Editions Available) Microsoft Development Focused Provides HTML, JavaScript, and CSS3 Auto-Complete Number of Create Extensions to support HTML5 Overhauled Web Development Editor Experience
  • 31. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML A FEW OTHERS... Webstorm IDE Notepad++ Sublime Text, Vi, Emacs
  • 32. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML WHAT HTML5 EDITOR DO YOU USE?
  • 33. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML DEMO - ECLIPSE
  • 34. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML TONS OF NEW ELEMENTS! (FOR STRUCTURE AND SEMANTICS) <article> <aside> <bdi> <command> <details> <figure> <figcaption> <footer> <header> <hgroup> <mark>
  • 35. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML TONS OF NEW ELEMENTS! (MEDIA) <audio> <video> <source> <embed> <track>
  • 36. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML TONS OF NEW ELEMENTS! (FOR DRAWING) <canvas>
  • 37. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML TONS OF NEW ELEMENTS! (FOR FORM) <datalist> <keygen> <output>
  • 38. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML REMOVED OLD TIMEY ELEMENTS! <acronym> <applet> <basefont> <big> <center> <dir> <font> <frame> <frameset> <noframes> <strike>
  • 39. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML ALL YOU NEED IS THE NEW DOCTYPE
  • 40. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML DEMO: AUDIO ELEMENT
  • 41. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML - DEMO AUDIO ELEMENT (PART 1) - DEFAULT AUDIO PLAYER 0:35
  • 42. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML - DEMO AUDIO ELEMENT (PART 2) - MULTIPLE SOURCE FILES 0:35
  • 43. HTML5 TOOLS & BUILDING MATERIALS DEFINITION | HTML WHAT ABOUT BACKWARDS COMPATIBILITY? (I.E. INTERNET EXPLORER) COMING UP LATER IN THE PRESENTATION, I PROMISE!
  • 44. HTML5 TOOLS & BUILDING MATERIALS STYLE | CSS3 - COMPILERS SASS - SYNTACTICALLY AWESOME STYLESHEETS http://sass-lang.com/ Improves CSS/ syntax with extra language features Variables Nested Rules Mixins (Rules with Parameters) Selector Inheritance Available as Ruby Gem
  • 45. HTML5 TOOLS & BUILDING MATERIALS STYLE | CSS3 - COMPILERS LESS - DYNAMIC STYLESHEET LANGUAGE http://lesscss.org/ Similar to SASS. Improves CSS syntax with extra language features Variables Nested Rules Mixins (Rules with parameters) Functions and Operations JavaScript Based Client and Server Options
  • 46. HTML5 TOOLS & BUILDING MATERIALS STYLE | CSS3 - COMPILERS OPTIONAL DEMO - LESS
  • 47. HTML5 TOOLS & BUILDING MATERIALS STYLE | CSS3 - FRAMEWORKS FRAMWORKS Twitter Bootstrap Semantic UI Metro UI
  • 48. HTML5 TOOLS & BUILDING MATERIALS STYLE | CSS3 - FRAMEWORKS Semantic Grid Blueprint Framework jQuery UI CSS Framework (http://docs.jquery.com/UI/Theming/API) YUI CSS Components
  • 49. HTML5 TOOLS & BUILDING MATERIALS STYLE | CSS3 Media Queries Border-Radius Background Gradients CSS Animations and Transitions
  • 50. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - LIBRARIES MODERNIZR http://modernizr.com/ Makes your HTML5 Fully Browser Compatible Open Source with MIT License Handles IE support just by adding the library Check whether client support specific HTML5 features Can check in both CSS and JavaScript Adds extra tooling for performance
  • 51. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - LIBRARIES DEMO - MODERNIZR Go to the Demo
  • 52. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - LIBRARIES There are a TON of libraries avilable thanks to the open source community. Before you start writing your own, find out if someone else has done it before Github Bitbucket CodePlex Google Code
  • 53. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - COMPILERS COFFEESCRIPT http://coffeescript.org/ "...a little language that compiles into JavaScript" Cleaner more Readable Code Ruby-like Syntax Uses JavaScript Lint Produces readable JavaScript Code Installs from NPM
  • 54. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - COMPILERS TYPESCRIPT http://typescript.org/ Microsoft's attempts at ECMASCRIPT next ActiveOpen Source Project Is subset of JavaScript (i.e. JavaScript is valid TypeScript) Compiles down to JavaScript
  • 55. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - TESTING JASMINE https://github.com/pivotal/jasmine/wiki Behaviour Driven Development (BDD) Resembles RSpec Works with multiple platforms (ASP.NET, NodeJS, Ruby, etc.) No external dependencies
  • 56. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - TESTING QUNIT http://qunitjs.com/ Unit Testing Framework Developed by jQuery No external dependencies (not even jQuery)
  • 57. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - TESTING MOCHA http://visionmedia.github.io/mocha/ BDD based framework Resembles RSpec Works with both client and server (NodeJS)
  • 58. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT - TESTING DEMO - BDD WITH JASMINE
  • 59. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT JavaScript APIs Media (i.e Audio and Video) Text Track (i.e. Subtitles) Web Crypto Encrypted Media Extensions (EME) Offline Web Applications / Application Cache User Interaction History
  • 60. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT JavaScript APIs DEMO - MEDIA API
  • 61. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT Play Pause Volume Up Volume Down
  • 62. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT Non-HTML5 Spec JavaScript APIs Canvas (2D Context) Cross Channel Messaging Microdata Web Workers Web Storage / IndexedDB Server-Sent Events
  • 63. HTML5 TOOLS & BUILDING MATERIALS INTERACTION | JAVASCRIPT Non-HTML5 Spec JavaScript APIs DEMO - CANVAS API
  • 64.
  • 66. THE POINT... To answer one of these questions: What is HTML5 for? What makes up HTML5? What HTML5 tools are out there for me to use? Does HTML5 even matter to you?
  • 67. THE PLAN How are we going to understand these points? Documents Evolved Really Defining HTML5 HTML5 Hardware (i.e. The Toolbox)
  • 69. NEXT STEPS Go to Modern.IE and explore Read an HTML5 book or Tutorial Download and run an HTML5 editor (e.g. WebMatrix) Upgrade an app with Modernizr and the new DOCTYPE
  • 70. DAVID WESST @DAVIDWESST ON TWITTER DAVIDWESST.COM ON THE WEB DAVIDWESST.COM/BLOG ON THE BLOGOSPHERE DW [AT] DAVIDWESST.COM ON EMAIL