SlideShare uma empresa Scribd logo
1 de 36
HTML5 & CSS3
New things
Agenda
• HTML vs HTML5: New features
• CSS vs CSS3: New features
• Responsive Design core concepts
• Modernizr
HTML VS HTML5: NEW
FEATURES
HTML5 & CSS3
DOCTYPE
• HTML5
– <!DOCTYPE html>
• HTML
– <!DOCTYPE html PUBLIC "-
//W3C//DTD XHTML 1.0 Transitional//EN" "htt
p://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<Figure>
• HTML5
– <figure>
<img src="path/to/image" alt="About image" />
<figcaption>
<p>This is an image of something interesting. </p>
</figcaption>
– </figure>
• HTML
– N/A
“Type” – Links & Js
• HTML5
– Not necessary
• <script src="path/to/script.js"></script>
• HTML
– Necessary
• <script src="path/to/script.js“
type=“text/javascript”></script>
“” – ID’s & Classes
• HTML5
– Not necessary
• <p class=myClass id=someId>
• HTML
– Necessary
• <p class=“myClass” id=“someId”>
UL Editable
• HTML5
– <ul contenteditable=true>
• HTML
– N/A
Type=“Email”
• HTML5
– <input id="email" name="email" type="email"
/>
• HTML
– N/A
Placeholders
• HTML5
– <input name="email" type="email"
placeholder=“mail@domain.com" />
• HTML
– N/A
Semantic Tags
• HTML5
– <Nav>
– <Header>
– <Article>
• <Section>
– <Aside>
– <Footer>
• HTML
– N/A
Required
• HTML5
– <input type="text" name="someInput"
required>
• HTML
– N/A
Autofocus
• HTML5
– <input type="text" name="someInput"
placeholder="Douglas Quaid" required
autofocus>
• HTML
– N/A
Audio
• HTML5
– <audio autoplay="autoplay"
controls="controls">
<source src="file.ogg" />
<source src="file.mp3" />
<a href="file.mp3">Download this file.</a>
– </audio>
• HTML
– N/A
Audio
• Supported formats
Video
• HTML5
– <video controls preload>
<source src=“video.ogv" type="video/ogg" />
<source src=“video.mp4" type="video/mp4”/>
<p> Your browser is old. <a
href=“video.mp4">Download this video instead.</a>
</p>
– </video>
• HTML
– N/A
Video
• Supported formats
Data Attributes
• HTML5
– <div id="myDiv" data-custom-attr="My
Value"> Text</div>
• HTML
– N/A
Demo
More help
• http://joshduck.com/periodic-table.html
CSS3 VS CSS: NEW FEATURES
HTML5 & CSS3
First Child
• CSS3
– #big_section p:first-child{ }
• CSS
– N/A
First Letter
• CSS3
– #p_line:first-letter{ }
• CSS
– N/A
Border Radius
• CSS3
– border-radius: 10px 90px 90px 10px;
• CSS
– N/A
Transition
• CSS3
– transition: width 2s, height 2s, color
3s, transform 2s, linear 2s;
• CSS
– N/A
Transformation
• CSS3
– transform:rotate(7deg);
– transform: translate(70px);
• CSS
– N/A
RESPONSIVE WEB DESIGN
HTML5 & CSS3
What is?
• “A website that responds to the device that
accesses it and delivers the appropriate
output for it uses responsive design.
Rather than designing multiple sites for
different-sized devices, this approach
designs one site but specifies how it
should appear on varied devices.”
https://itservices.stanford.edu/service/web/mobile/about/terminology
What isn’t?
• A small website
• Different url’s for different devices
• Having 100% width elements
Viewports
• <meta name="viewport"
content="width=device-width, user-
scalable=false;">
Media Queries
• CSS3 module
• Adapt to conditions like screen resolution
• Breakpoint
– @media only screen and (max-device-width:
480px) { }
Examples
• Fixed Design: http://www.corvusart.com/
• Elastic Design: http://clearleft.com/
• Responsive Web Design: Demo
MODERNIZR
HTML5 & CSS3
Modernizr
• Use HTML5 on old browsers
• Simple: Add reference to the js file
• Download: www.modernizr.com
Links
• Lynda:
– Responsive Design Fundamentals
– CSS3 First Look
• www.modernizr.com
• www.html5test.com/compare/browser/inde
x.html
• www.slideshare.net/Jim04

Mais conteúdo relacionado

Mais procurados

How to build a static website in two and a half days with Nuxt and Tailwind CSS
How to build a static website in two and a half days with Nuxt and Tailwind CSSHow to build a static website in two and a half days with Nuxt and Tailwind CSS
How to build a static website in two and a half days with Nuxt and Tailwind CSSVanessa Böhner
 
SVG - Scalable Vector Graphic
SVG - Scalable Vector GraphicSVG - Scalable Vector Graphic
SVG - Scalable Vector GraphicAkila Iroshan
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to JqueryGurpreet singh
 
Introduction to html & css
Introduction to html & cssIntroduction to html & css
Introduction to html & csssesharao puvvada
 
Javascript
JavascriptJavascript
JavascriptMozxai
 
JavaScript Frameworks for SharePoint add-ins Cambridge
JavaScript Frameworks for SharePoint add-ins CambridgeJavaScript Frameworks for SharePoint add-ins Cambridge
JavaScript Frameworks for SharePoint add-ins CambridgeSonja Madsen
 
Take Your Website From Lethargic To Blazingly Fast
Take Your Website From Lethargic To Blazingly FastTake Your Website From Lethargic To Blazingly Fast
Take Your Website From Lethargic To Blazingly FastTechBasedMarketing
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksAndolasoft Inc
 
Microfrontends: The good, the bad, and the ugly
Microfrontends: The good, the bad, and the uglyMicrofrontends: The good, the bad, and the ugly
Microfrontends: The good, the bad, and the uglyVanessa Böhner
 
MSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSS
MSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSSMSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSS
MSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSSMoataz_Hesham
 
Accessibility Hacks version 2
Accessibility Hacks version 2Accessibility Hacks version 2
Accessibility Hacks version 2Graham Armfield
 
Building JavaScript Apps for Force.com with EmberJS
Building JavaScript Apps for Force.com with EmberJSBuilding JavaScript Apps for Force.com with EmberJS
Building JavaScript Apps for Force.com with EmberJSSalesforce Developers
 
Accessibility Hacks Wordcamp Manchester October 2018
Accessibility Hacks Wordcamp Manchester October 2018Accessibility Hacks Wordcamp Manchester October 2018
Accessibility Hacks Wordcamp Manchester October 2018Graham Armfield
 
Developer skills
Developer skillsDeveloper skills
Developer skillswebger
 
Patterns in add ins espc15
Patterns in add ins espc15Patterns in add ins espc15
Patterns in add ins espc15Sonja Madsen
 

Mais procurados (20)

How to build a static website in two and a half days with Nuxt and Tailwind CSS
How to build a static website in two and a half days with Nuxt and Tailwind CSSHow to build a static website in two and a half days with Nuxt and Tailwind CSS
How to build a static website in two and a half days with Nuxt and Tailwind CSS
 
Tools for Modern Web Design
Tools for Modern Web DesignTools for Modern Web Design
Tools for Modern Web Design
 
SVG - Scalable Vector Graphic
SVG - Scalable Vector GraphicSVG - Scalable Vector Graphic
SVG - Scalable Vector Graphic
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
 
Introduction to html & css
Introduction to html & cssIntroduction to html & css
Introduction to html & css
 
Javascript
JavascriptJavascript
Javascript
 
JavaScript Frameworks for SharePoint add-ins Cambridge
JavaScript Frameworks for SharePoint add-ins CambridgeJavaScript Frameworks for SharePoint add-ins Cambridge
JavaScript Frameworks for SharePoint add-ins Cambridge
 
Take Your Website From Lethargic To Blazingly Fast
Take Your Website From Lethargic To Blazingly FastTake Your Website From Lethargic To Blazingly Fast
Take Your Website From Lethargic To Blazingly Fast
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS Tricks
 
Angular js
Angular jsAngular js
Angular js
 
Css navbar
Css navbarCss navbar
Css navbar
 
Microfrontends: The good, the bad, and the ugly
Microfrontends: The good, the bad, and the uglyMicrofrontends: The good, the bad, and the ugly
Microfrontends: The good, the bad, and the ugly
 
Web Designing
Web DesigningWeb Designing
Web Designing
 
MSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSS
MSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSSMSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSS
MSTCCU'16 - Aspiration Webbers - Session 2 - HTML&CSS
 
Accessibility Hacks version 2
Accessibility Hacks version 2Accessibility Hacks version 2
Accessibility Hacks version 2
 
Building JavaScript Apps for Force.com with EmberJS
Building JavaScript Apps for Force.com with EmberJSBuilding JavaScript Apps for Force.com with EmberJS
Building JavaScript Apps for Force.com with EmberJS
 
Accessibility Hacks Wordcamp Manchester October 2018
Accessibility Hacks Wordcamp Manchester October 2018Accessibility Hacks Wordcamp Manchester October 2018
Accessibility Hacks Wordcamp Manchester October 2018
 
Developer skills
Developer skillsDeveloper skills
Developer skills
 
Patterns in add ins espc15
Patterns in add ins espc15Patterns in add ins espc15
Patterns in add ins espc15
 
Aleact
AleactAleact
Aleact
 

Destaque

HTML5 Training in Pune by Technnovation Labs
HTML5 Training in Pune by Technnovation LabsHTML5 Training in Pune by Technnovation Labs
HTML5 Training in Pune by Technnovation LabsPrasad Shende
 
Javascript training sample
Javascript training sampleJavascript training sample
Javascript training sampleprahalad_das_in
 
Training HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPBTraining HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPBWahyu Putra
 
HTML lets get creative!!
HTML lets get creative!!HTML lets get creative!!
HTML lets get creative!!Niamh Foley
 
Kalp Corporate Angular Js Tutorials
Kalp Corporate Angular Js TutorialsKalp Corporate Angular Js Tutorials
Kalp Corporate Angular Js TutorialsKalp Corporate
 
Front End performance as a Continuous Integration - Part1
Front End performance as a Continuous Integration - Part1Front End performance as a Continuous Integration - Part1
Front End performance as a Continuous Integration - Part1Tarence DSouza
 
Webinar on Angular JS titled 'Develop Responsive Single Page Application'
Webinar on Angular JS titled 'Develop Responsive Single Page Application'Webinar on Angular JS titled 'Develop Responsive Single Page Application'
Webinar on Angular JS titled 'Develop Responsive Single Page Application'Edureka!
 
Angular js
Angular jsAngular js
Angular jsmiladiir
 
Single page application 04
Single page application   04Single page application   04
Single page application 04Ismaeel Enjreny
 
Christmas Trees Made with HTML CSS and JS
Christmas Trees Made with HTML CSS and JSChristmas Trees Made with HTML CSS and JS
Christmas Trees Made with HTML CSS and JSNiamh Foley
 
Modular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS WorkshopModular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS WorkshopShay Howe
 
About Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSAbout Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSNaga Harish M
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Oleksii Prohonnyi
 

Destaque (20)

HTML5 Training in Pune by Technnovation Labs
HTML5 Training in Pune by Technnovation LabsHTML5 Training in Pune by Technnovation Labs
HTML5 Training in Pune by Technnovation Labs
 
AngularJs-training
AngularJs-trainingAngularJs-training
AngularJs-training
 
JavaScript Training
JavaScript TrainingJavaScript Training
JavaScript Training
 
Javascript training sample
Javascript training sampleJavascript training sample
Javascript training sample
 
CSS3 Styling
CSS3 StylingCSS3 Styling
CSS3 Styling
 
Training HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPBTraining HTML5 CSS3 Ilkom IPB
Training HTML5 CSS3 Ilkom IPB
 
Training On Angular Js
Training On Angular JsTraining On Angular Js
Training On Angular Js
 
Angular 2 Component styles
Angular 2 Component stylesAngular 2 Component styles
Angular 2 Component styles
 
HTML lets get creative!!
HTML lets get creative!!HTML lets get creative!!
HTML lets get creative!!
 
Kalp Corporate Angular Js Tutorials
Kalp Corporate Angular Js TutorialsKalp Corporate Angular Js Tutorials
Kalp Corporate Angular Js Tutorials
 
Front End performance as a Continuous Integration - Part1
Front End performance as a Continuous Integration - Part1Front End performance as a Continuous Integration - Part1
Front End performance as a Continuous Integration - Part1
 
Webinar on Angular JS titled 'Develop Responsive Single Page Application'
Webinar on Angular JS titled 'Develop Responsive Single Page Application'Webinar on Angular JS titled 'Develop Responsive Single Page Application'
Webinar on Angular JS titled 'Develop Responsive Single Page Application'
 
Angular js
Angular jsAngular js
Angular js
 
Angular module
Angular moduleAngular module
Angular module
 
Single page application 04
Single page application   04Single page application   04
Single page application 04
 
Christmas Trees Made with HTML CSS and JS
Christmas Trees Made with HTML CSS and JSChristmas Trees Made with HTML CSS and JS
Christmas Trees Made with HTML CSS and JS
 
Angular 2
Angular 2Angular 2
Angular 2
 
Modular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS WorkshopModular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS Workshop
 
About Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSAbout Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JS
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1
 

Semelhante a Training Html5 -CSS3 New things

Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Cengage Learning
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 
WEB DEVELOPMENT.pptx
WEB DEVELOPMENT.pptxWEB DEVELOPMENT.pptx
WEB DEVELOPMENT.pptxsilvers5
 
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892Deepak Sharma
 
Css best practices style guide and tips
Css best practices style guide and tipsCss best practices style guide and tips
Css best practices style guide and tipsChris Love
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewDiacode
 
Comparing XAML and HTML: FIGHT!
Comparing XAML and HTML: FIGHT!Comparing XAML and HTML: FIGHT!
Comparing XAML and HTML: FIGHT!Gill Cleeren
 
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]David Wesst
 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?Denise Jacobs
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Erin M. Kidwell
 
Introduction to HTML language Web design.pptx
Introduction to HTML language Web design.pptxIntroduction to HTML language Web design.pptx
Introduction to HTML language Web design.pptxlekhacce
 

Semelhante a Training Html5 -CSS3 New things (20)

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
 
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
Course Tech 2013, Sasha Vodnik, A Crash Course in HTML5
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
WEB DEVELOPMENT.pptx
WEB DEVELOPMENT.pptxWEB DEVELOPMENT.pptx
WEB DEVELOPMENT.pptx
 
web development
web developmentweb development
web development
 
Intro to CSS3
Intro to CSS3Intro to CSS3
Intro to CSS3
 
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
 
Css best practices style guide and tips
Css best practices style guide and tipsCss best practices style guide and tips
Css best practices style guide and tips
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overview
 
Comparing XAML and HTML: FIGHT!
Comparing XAML and HTML: FIGHT!Comparing XAML and HTML: FIGHT!
Comparing XAML and HTML: FIGHT!
 
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
Rich and Beautiful: Making Attractive Apps in HTML5 [Wpg 2013]
 
25444215.pptx
25444215.pptx25444215.pptx
25444215.pptx
 
web development
web developmentweb development
web development
 
Html5 public
Html5 publicHtml5 public
Html5 public
 
CSS3: Are you experienced?
CSS3: Are you experienced?CSS3: Are you experienced?
CSS3: Are you experienced?
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
 
Introduction to HTML language Web design.pptx
Introduction to HTML language Web design.pptxIntroduction to HTML language Web design.pptx
Introduction to HTML language Web design.pptx
 
HTML5
HTML5HTML5
HTML5
 
HTML5: Introduction
HTML5: IntroductionHTML5: Introduction
HTML5: Introduction
 
025444215.pptx
025444215.pptx025444215.pptx
025444215.pptx
 

Mais de Jimmy Campos

Starting with CSS3
Starting with CSS3Starting with CSS3
Starting with CSS3Jimmy Campos
 
Starting with Scrum
Starting with ScrumStarting with Scrum
Starting with ScrumJimmy Campos
 
Diseno de productos utilizando metodologias agiles
Diseno de productos utilizando metodologias agilesDiseno de productos utilizando metodologias agiles
Diseno de productos utilizando metodologias agilesJimmy Campos
 
Agile experience design part 3
Agile experience design part 3Agile experience design part 3
Agile experience design part 3Jimmy Campos
 
Agile experience design part 2
Agile experience design part 2Agile experience design part 2
Agile experience design part 2Jimmy Campos
 
Agile experience design part one
Agile experience design part oneAgile experience design part one
Agile experience design part oneJimmy Campos
 

Mais de Jimmy Campos (6)

Starting with CSS3
Starting with CSS3Starting with CSS3
Starting with CSS3
 
Starting with Scrum
Starting with ScrumStarting with Scrum
Starting with Scrum
 
Diseno de productos utilizando metodologias agiles
Diseno de productos utilizando metodologias agilesDiseno de productos utilizando metodologias agiles
Diseno de productos utilizando metodologias agiles
 
Agile experience design part 3
Agile experience design part 3Agile experience design part 3
Agile experience design part 3
 
Agile experience design part 2
Agile experience design part 2Agile experience design part 2
Agile experience design part 2
 
Agile experience design part one
Agile experience design part oneAgile experience design part one
Agile experience design part one
 

Último

Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Último (20)

Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Training Html5 -CSS3 New things

Notas do Editor

  1. Sin embargo se deben seguir implementando validaciones cliente/servidor
  2. Sin embargo se deben seguir implementando validaciones cliente/servidor
  3. Razones para usarlasMayor claridad para los desarrolladoresMayor facilidad para trabajar con cssRegiones definidas para el SEOAyuda a las tecnologias de asistencia, como lectores de pantalla
  4. Razones para usarlasMayor claridad para los desarrolladoresMayor facilidad para trabajar con cssRegiones definidas para el SEOAyuda a las tecnologias de asistencia, como lectores de pantalla
  5. Razones para usarlasMayor claridad para los desarrolladoresMayor facilidad para trabajar con cssRegiones definidas para el SEOAyuda a las tecnologias de asistencia, como lectores de pantalla
  6. Razones para usarlasMayor claridad para los desarrolladoresMayor facilidad para trabajar con cssRegiones definidas para el SEOAyuda a las tecnologias de asistencia, como lectores de pantalla
  7. Razones para usarlasMayor claridad para los desarrolladoresMayor facilidad para trabajar con cssRegiones definidas para el SEOAyuda a las tecnologias de asistencia, como lectores de pantalla
  8. Razones para usarlasMayor claridad para los desarrolladoresMayor facilidad para trabajar con cssRegiones definidas para el SEOAyuda a las tecnologias de asistencia, como lectores de pantalla
  9. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  10. http://joshduck.com/periodic-table.html
  11. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  12. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  13. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  14. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  15. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  16. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  17. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  18. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  19. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  20. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  21. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  22. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.
  23. Custom data attributes are intended to store custom data private to the page or application, for which there are no more appropriate attributes or elements.