SlideShare a Scribd company logo
1 of 18
Download to read offline
HTML5 and CSS3
HTML5 ~= HTML + CSS + JS
Outline
● HTML5 Introduction
● New Elements
● New Attributes
● Full CSS3 Support
● Media
● 2D/3D Graphics
● Local Storage
● TODO
HTML5 Introduction
● What is HTML5?
○ HTML is a core technology markup language of the
Internet used for structuring and presenting
content for the World Wide Web (WEB).
○ HTML5 is the latest HTML standard. It walks hand in
hand with CSS3, the latest CSS standard.
HTML5 Introduction
● Rough Timeline of Web Technologies
○ 1991 : HTML
○ 1994 : HTML 2
○ 1996 : CSS 1 + JavaScript
○ 1997 : HTML 4
○ 1998 : CSS 2
○ 2000 : XHTML 1
○ 2002 : Tableless Web Design
○ 2005 : AJAX
○ 2009 : HTML5
New Elements
New Attributes
Full CSS3 Support
● CSS Selector
○ :nth-child(NUMBER)
○ :first-child
○ :last-child
○ input[type="email"]
○ ...
Full CSS3 Support
● Gradients
○ linear-gradient
● Shadows
○ text-shadow
○ box-shadow
● Round Corners
○ border-radius
● ...
Full CSS3 Support
● Web Fonts
@font-face {
font-family: 'Angkor';
src: local('Angkor'),
url(http://fonts.gstatic.com/angkor.ttf)
format('truetype');
}
h1 {
font-family: 'Angkor';
}
Full CSS3 Support
● Media Query
@media mediatype and|not|only (media feature) {
CSS-Code;
}
Media
● Audio
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Media
● Video
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
2D/3D Graphics
● Canvas 2D
<canvas id='canvas' width='600' height='300'>
Your browser does not support the canvas.
</canvas>
var canvas = document.getElementById('canvas');
var context = canvas.getContext('2d');
context.font = '38pt Arial';
context.fillStyle = 'cornflowerblue';
context.strokeStyle = 'blue';
context.fillText("Hello Canvas", canvas.width/2 - 150,
canvas.height/2 + 15);
context.strokeText("Hello Canvas", canvas.width/2 - 150,
canvas.height/2 + 15 );
2D/3D Graphics
● Canvas 3D
○ http://www.kevs3d.co.uk/dev/html5logo/
Local Storage
● Cache Webpage
○ <html manifest="name.appcache">
<!DOCTYPE html>
<html manifest="demo_html.appcache">
<body>
<h1>Hello AppCache Demo</h1>
<p>
<img src="img_logo.gif" width="336" height="69">
</p>
</body>
</html>
Local Storage
● Web Storage
○ localStorage.setItem(KEY, VALUE);
○ localStorage.getItem(KEY);
○ http://www.w3schools.com/html/tryit.asp?
filename=tryhtml5_webstorage_session
TODO
● By using CSS3 media query and nth-child,
download this zip http://goo.gl/1SFTh9 and
style the HTML of “index.html” look to the
same to image giving (for desktop, tablet
and smartphone, you can see the example
in slide number 10)
References
● http://www.colorzilla.com/gradient-editor/
● http://css3gen.com/text-shadow/
● http://www.cssmatic.com/box-shadow
● http://www.w3schools.com/html/html5_audio.asp
● http://www.w3schools.com/html/html5_video.asp
● https://developer.mozilla.org/en-
US/docs/Web/API/Canvas_API/Tutorial
● http://corehtml5canvas.com/code-live/
● http://www.html5rocks.com
● http://html5test.com/
● http://www.kevs3d.co.uk/dev/html5logo/
● http://slides.html5rocks.com/
● http://www.w3schools.com/html/html_xhtml.asp
● http://www.w3schools.com/cssref/css3_pr_mediaquery.asp

More Related Content

What's hot

What's hot (20)

HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
 
An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5
 
Html5
Html5Html5
Html5
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
Html css java script basics All about you need
Html css java script basics All about you needHtml css java script basics All about you need
Html css java script basics All about you need
 
Html & CSS
Html & CSSHtml & CSS
Html & CSS
 
Introduction to HTML, CSS, and Javascript
Introduction to HTML, CSS, and JavascriptIntroduction to HTML, CSS, and Javascript
Introduction to HTML, CSS, and Javascript
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
 
11 Quiz related to HTML, CSS, JS and WP
11 Quiz related to HTML, CSS, JS and WP11 Quiz related to HTML, CSS, JS and WP
11 Quiz related to HTML, CSS, JS and WP
 
Dynamic HTML (DHTML)
Dynamic HTML (DHTML)Dynamic HTML (DHTML)
Dynamic HTML (DHTML)
 
HTML & XHTML Basics
HTML & XHTML BasicsHTML & XHTML Basics
HTML & XHTML Basics
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
HTML and CSS
HTML and CSSHTML and CSS
HTML and CSS
 
3 Layers of the Web - Part 1
3 Layers of the Web - Part 13 Layers of the Web - Part 1
3 Layers of the Web - Part 1
 
Internet and Web Technology (CLASS-4) [CSS & JS]
Internet and Web Technology (CLASS-4) [CSS & JS] Internet and Web Technology (CLASS-4) [CSS & JS]
Internet and Web Technology (CLASS-4) [CSS & JS]
 
Html - By Auroskkil
Html - By AuroskkilHtml - By Auroskkil
Html - By Auroskkil
 
Web front end development introduction to html css and javascript
Web front end development introduction to html css and javascriptWeb front end development introduction to html css and javascript
Web front end development introduction to html css and javascript
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
 
A Primer on HTML 5 - By Nick Armstrong
A Primer on HTML 5 - By Nick ArmstrongA Primer on HTML 5 - By Nick Armstrong
A Primer on HTML 5 - By Nick Armstrong
 

Similar to HTML 5 and CSS 3

Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3
Kannika Kong
 
Ie9 dev overview (300) beta
Ie9 dev overview (300) betaIe9 dev overview (300) beta
Ie9 dev overview (300) beta
Kirk Yamamoto
 
HTML5 New Features and Resources
HTML5 New Features and ResourcesHTML5 New Features and Resources
HTML5 New Features and Resources
Ron Reiter
 

Similar to HTML 5 and CSS 3 (20)

Html5
Html5Html5
Html5
 
Html5
Html5Html5
Html5
 
Html5
Html5Html5
Html5
 
Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3
 
IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designing
 
Ie9 dev overview (300) beta
Ie9 dev overview (300) betaIe9 dev overview (300) beta
Ie9 dev overview (300) beta
 
#4 - CSS Selectors, CSS3 and Web typography
#4 - CSS Selectors, CSS3 and Web typography#4 - CSS Selectors, CSS3 and Web typography
#4 - CSS Selectors, CSS3 and Web typography
 
Graphics & Animation with HTML5
Graphics & Animation with HTML5Graphics & Animation with HTML5
Graphics & Animation with HTML5
 
DevFest Makerere html5 presentation by caesar mukama
DevFest Makerere html5 presentation by caesar mukamaDevFest Makerere html5 presentation by caesar mukama
DevFest Makerere html5 presentation by caesar mukama
 
ENIB 2015 2016 - CAI Web S02E01- Côté Navigateur 3/3 - Web Components avec Po...
ENIB 2015 2016 - CAI Web S02E01- Côté Navigateur 3/3 - Web Components avec Po...ENIB 2015 2016 - CAI Web S02E01- Côté Navigateur 3/3 - Web Components avec Po...
ENIB 2015 2016 - CAI Web S02E01- Côté Navigateur 3/3 - Web Components avec Po...
 
Html5 more than just html5 v final
Html5  more than just html5 v finalHtml5  more than just html5 v final
Html5 more than just html5 v final
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
 
Introduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptxIntroduction to HTML+CSS+Javascript.pptx
Introduction to HTML+CSS+Javascript.pptx
 
VizEx View HTML5 workshop 2017
VizEx View HTML5 workshop 2017VizEx View HTML5 workshop 2017
VizEx View HTML5 workshop 2017
 
HTML5 - A Whirlwind tour
HTML5 - A Whirlwind tourHTML5 - A Whirlwind tour
HTML5 - A Whirlwind tour
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
 
Html5 Future of WEB
Html5 Future of WEBHtml5 Future of WEB
Html5 Future of WEB
 
Html 5 - What's new?
Html 5 - What's new?Html 5 - What's new?
Html 5 - What's new?
 
HTML5 New Features and Resources
HTML5 New Features and ResourcesHTML5 New Features and Resources
HTML5 New Features and Resources
 
Html5 n css3
Html5 n css3Html5 n css3
Html5 n css3
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Recently uploaded (20)

Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 

HTML 5 and CSS 3

  • 1. HTML5 and CSS3 HTML5 ~= HTML + CSS + JS
  • 2. Outline ● HTML5 Introduction ● New Elements ● New Attributes ● Full CSS3 Support ● Media ● 2D/3D Graphics ● Local Storage ● TODO
  • 3. HTML5 Introduction ● What is HTML5? ○ HTML is a core technology markup language of the Internet used for structuring and presenting content for the World Wide Web (WEB). ○ HTML5 is the latest HTML standard. It walks hand in hand with CSS3, the latest CSS standard.
  • 4. HTML5 Introduction ● Rough Timeline of Web Technologies ○ 1991 : HTML ○ 1994 : HTML 2 ○ 1996 : CSS 1 + JavaScript ○ 1997 : HTML 4 ○ 1998 : CSS 2 ○ 2000 : XHTML 1 ○ 2002 : Tableless Web Design ○ 2005 : AJAX ○ 2009 : HTML5
  • 7. Full CSS3 Support ● CSS Selector ○ :nth-child(NUMBER) ○ :first-child ○ :last-child ○ input[type="email"] ○ ...
  • 8. Full CSS3 Support ● Gradients ○ linear-gradient ● Shadows ○ text-shadow ○ box-shadow ● Round Corners ○ border-radius ● ...
  • 9. Full CSS3 Support ● Web Fonts @font-face { font-family: 'Angkor'; src: local('Angkor'), url(http://fonts.gstatic.com/angkor.ttf) format('truetype'); } h1 { font-family: 'Angkor'; }
  • 10. Full CSS3 Support ● Media Query @media mediatype and|not|only (media feature) { CSS-Code; }
  • 11. Media ● Audio <audio controls> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio>
  • 12. Media ● Video <video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> Your browser does not support the video tag. </video>
  • 13. 2D/3D Graphics ● Canvas 2D <canvas id='canvas' width='600' height='300'> Your browser does not support the canvas. </canvas> var canvas = document.getElementById('canvas'); var context = canvas.getContext('2d'); context.font = '38pt Arial'; context.fillStyle = 'cornflowerblue'; context.strokeStyle = 'blue'; context.fillText("Hello Canvas", canvas.width/2 - 150, canvas.height/2 + 15); context.strokeText("Hello Canvas", canvas.width/2 - 150, canvas.height/2 + 15 );
  • 14. 2D/3D Graphics ● Canvas 3D ○ http://www.kevs3d.co.uk/dev/html5logo/
  • 15. Local Storage ● Cache Webpage ○ <html manifest="name.appcache"> <!DOCTYPE html> <html manifest="demo_html.appcache"> <body> <h1>Hello AppCache Demo</h1> <p> <img src="img_logo.gif" width="336" height="69"> </p> </body> </html>
  • 16. Local Storage ● Web Storage ○ localStorage.setItem(KEY, VALUE); ○ localStorage.getItem(KEY); ○ http://www.w3schools.com/html/tryit.asp? filename=tryhtml5_webstorage_session
  • 17. TODO ● By using CSS3 media query and nth-child, download this zip http://goo.gl/1SFTh9 and style the HTML of “index.html” look to the same to image giving (for desktop, tablet and smartphone, you can see the example in slide number 10)
  • 18. References ● http://www.colorzilla.com/gradient-editor/ ● http://css3gen.com/text-shadow/ ● http://www.cssmatic.com/box-shadow ● http://www.w3schools.com/html/html5_audio.asp ● http://www.w3schools.com/html/html5_video.asp ● https://developer.mozilla.org/en- US/docs/Web/API/Canvas_API/Tutorial ● http://corehtml5canvas.com/code-live/ ● http://www.html5rocks.com ● http://html5test.com/ ● http://www.kevs3d.co.uk/dev/html5logo/ ● http://slides.html5rocks.com/ ● http://www.w3schools.com/html/html_xhtml.asp ● http://www.w3schools.com/cssref/css3_pr_mediaquery.asp