SlideShare a Scribd company logo
Pruuuu
uuuuuu
                                     vroem,
 uuuuut !!!                         vroem !!!




         HTML5 & SLICE-TEMPLATE
                Door Stijn en Tom
HTML5
WAT IS HTML5 NIET?


• Web     3.0

• CSS3

• Flash
WAAROM?


• Eenvoudiger

• Gestructureerder

• Hip!
WAT IS HTML5?

• <!doctype   html>

• Vereenvoudiging     van tags (script, link, ...)

• Nieuwe   tags (article, section, ...)

• Nieuwe   input types (number, e-mail, ...)

• Nieuwe API’s   (WebWorkers, WebSockets, History, ...)
WAT GAAN WE GEBRUIKEN?

• <!doctype   html>

• Vereenvoudiging     van tags (script, link, ...)

• Nieuwe   tags (article, section, ...)

• Nieuwe   input types (number, e-mail, ...)

• Nieuwe API’s   (WebWorkers, WebSockets, History, ...)
WELKE BROWSERS?

• Chrome

• Safari

• Firefox   4

• Internet   Explorer 9

• Opera
WAT MET DE REST?


• Modernizr

• HTML5shiv

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




                      <!doctype html>
EENVOUDIGERE TAGS

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="design/css/layout.css" rel="stylesheet" type="text/css" />
<script src=”javascript/libs/jquery-1.4.4.min.js” type=”text/javascript></script>




           <meta charset="utf-8">
           <link rel="stylesheet" href="design/css/style.css" />
           <script src=”javascript/libs/jquery-1.4.4.min.js”></script>
<!doctype html>


                          NIEUWE TAGS
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title></title>

    <meta name="description" content="">

</head>
<body>

<header>
    <nav>
         <ul id="navigation">
             <li class="active"><a href="#">Home</a></li>
             <li><a href="#">News</a></li>
             <li><a href="#">Contact</a></li>
         </ul>
    </nav>
</header>

<section id="content">
    <article>
         ...
    </article>
    <aside>
         ...
    </aside>
</section>

<footer>
    Copyright
</footer>

</body>
</html>
<!doctype html>


                          NIEUWE TAGS
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title></title>

    <meta name="description" content="">

</head>
<body>

<header>
    <nav>
         <ul id="navigation">
             <li class="active"><a href="#">Home</a></li>
             <li><a href="#">News</a></li>
             <li><a href="#">Contact</a></li>
         </ul>
    </nav>
</header>

<section id="content">
    <article>
         ...
    </article>
    <aside>
         ...
    </aside>
</section>

<footer>
    Copyright
</footer>

</body>
</html>
<!doctype html>


                          NIEUWE TAGS
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title></title>

    <meta name="description" content="">

</head>
<body>

<header>
    <nav>
         <ul id="navigation">
             <li class="active"><a href="#">Home</a></li>
             <li><a href="#">News</a></li>
             <li><a href="#">Contact</a></li>
         </ul>
    </nav>
</header>

<section id="content">
    <article>
         ...
    </article>
    <aside>
         ...
    </aside>
</section>

<footer>
    Copyright
</footer>

</body>
</html>
<!doctype html>


                          NIEUWE TAGS
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title></title>

    <meta name="description" content="">

</head>
<body>

<header>
    <nav>
         <ul id="navigation">
             <li class="active"><a href="#">Home</a></li>
             <li><a href="#">News</a></li>
             <li><a href="#">Contact</a></li>
         </ul>
    </nav>
</header>

<section id="content">
    <article>
         ...
    </article>
    <aside>
         ...
    </aside>
</section>

<footer>
    Copyright
</footer>

</body>
</html>
<!doctype html>


                          NIEUWE TAGS
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title></title>

    <meta name="description" content="">

</head>
<body>

<header>
    <nav>
         <ul id="navigation">
             <li class="active"><a href="#">Home</a></li>
             <li><a href="#">News</a></li>
             <li><a href="#">Contact</a></li>
         </ul>
    </nav>
</header>

<section id="content">
    <article>
         ...
    </article>
    <aside>
         ...
    </aside>
</section>

<footer>
    Copyright
</footer>

</body>
</html>
<!doctype html>


                          NIEUWE TAGS
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title></title>

    <meta name="description" content="">

</head>
<body>

<header>
    <nav>
         <ul id="navigation">
             <li class="active"><a href="#">Home</a></li>
             <li><a href="#">News</a></li>
             <li><a href="#">Contact</a></li>
         </ul>
    </nav>
</header>

<section id="content">
    <article>
         ...
    </article>
    <aside>
         ...
    </aside>
</section>

<footer>
    Copyright
</footer>

</body>
</html>
<!doctype html>


                          NIEUWE TAGS
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title></title>

    <meta name="description" content="">

</head>
<body>

<header>
    <nav>
         <ul id="navigation">
             <li class="active"><a href="#">Home</a></li>
             <li><a href="#">News</a></li>
             <li><a href="#">Contact</a></li>
         </ul>
    </nav>
</header>

<section id="content">
    <article>
         ...
    </article>
    <aside>
         ...
    </aside>
</section>

<footer>
    Copyright
</footer>

</body>
</html>
Fronttechnieken met HTML5 en de Slice-template
<header>
<nav>
<section>
<aside>
<aside>
<footer>
ARTICLE VS. SECTION
    <article>                   <section>
       ...                         ...
   </article>                  </section>




     The section element represents a
     generic section of a document or
      application. A section, in this
    context, is a thematic grouping of
    content, typically with a heading.



     If you could see the content as an
   item or entry in an RSS feed, wrap it
   in an article. Otherwise, use section.
NIEUWE TAGS

• <figure>

• <figcaption>

• <time>

• ...
INPUT TYPES

• placeholder
• autofocus
INPUT TYPES

• search
• email
• url
• number (spinbox)
• range
• date/datetime/week/month/time/...
• novalidate
Fronttechnieken met HTML5 en de Slice-template
SLICING TEMPLATE
    Door den Tom
“A default slicing template to create a
  uniform style of slicing websites”
GITHUB.COM/INVENTIS
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
MAPPEN STRUCTUUR
<HTML>
Fronttechnieken met HTML5 en de Slice-template
<HEAD>
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
</HEAD>
<BODY>
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
</BODY>
</HTML>
GITHUB.COM/INVENTIS
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
TOM@INVENTIS.BE
 ....of op kantoor van 8u tot 16u30.

More Related Content

What's hot (20)

CSS Frameworks
CSS FrameworksCSS Frameworks
CSS Frameworks
Mike Crabb
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5
Terry Ryan
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
Christopher Schmitt
 
HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)
Daniel Friedman
 
Front End Web Development Basics
Front End Web Development BasicsFront End Web Development Basics
Front End Web Development Basics
Tahir Shahzad
 
HTML5 - Just the basics
HTML5 - Just the basicsHTML5 - Just the basics
HTML5 - Just the basics
James VanDyke
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
HTML 5 Fundamental
HTML 5 FundamentalHTML 5 Fundamental
HTML 5 Fundamental
Lanh Le
 
HTML Semantic Tags
HTML Semantic TagsHTML Semantic Tags
HTML Semantic Tags
Bruce Kyle
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
danpaquette
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ Searchcamp
James Mills
 
Css
CssCss
Css
Sumit Gupta
 
HTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersHTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginners
PrakritiDhang
 
Layout with CSS
Layout with CSSLayout with CSS
Layout with CSS
Mike Crabb
 
SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014
Mark Rackley
 
google logo
google logogoogle logo
google logo
sunil kumar
 
Html5 semantics
Html5 semanticsHtml5 semantics
Html5 semantics
Prashanth Krish
 
Html5的应用与推行
Html5的应用与推行Html5的应用与推行
Html5的应用与推行
Sofish Lin
 
実務導入に向けたAngularの始め方@Angular入門者の会
実務導入に向けたAngularの始め方@Angular入門者の会実務導入に向けたAngularの始め方@Angular入門者の会
実務導入に向けたAngularの始め方@Angular入門者の会
Hayashi Yuichi
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
Amanda Case
 
CSS Frameworks
CSS FrameworksCSS Frameworks
CSS Frameworks
Mike Crabb
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5
Terry Ryan
 
HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)
Daniel Friedman
 
Front End Web Development Basics
Front End Web Development BasicsFront End Web Development Basics
Front End Web Development Basics
Tahir Shahzad
 
HTML5 - Just the basics
HTML5 - Just the basicsHTML5 - Just the basics
HTML5 - Just the basics
James VanDyke
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
HTML 5 Fundamental
HTML 5 FundamentalHTML 5 Fundamental
HTML 5 Fundamental
Lanh Le
 
HTML Semantic Tags
HTML Semantic TagsHTML Semantic Tags
HTML Semantic Tags
Bruce Kyle
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
danpaquette
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ Searchcamp
James Mills
 
HTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersHTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginners
PrakritiDhang
 
Layout with CSS
Layout with CSSLayout with CSS
Layout with CSS
Mike Crabb
 
SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014
Mark Rackley
 
Html5的应用与推行
Html5的应用与推行Html5的应用与推行
Html5的应用与推行
Sofish Lin
 
実務導入に向けたAngularの始め方@Angular入門者の会
実務導入に向けたAngularの始め方@Angular入門者の会実務導入に向けたAngularの始め方@Angular入門者の会
実務導入に向けたAngularの始め方@Angular入門者の会
Hayashi Yuichi
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
Amanda Case
 

Viewers also liked (20)

Tlc presentation
Tlc presentationTlc presentation
Tlc presentation
Charissa Black
 
Pollo
PolloPollo
Pollo
Andrea Manjarres
 
impact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rctimpact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rct
CIRM
 
L3 presentation7
L3 presentation7L3 presentation7
L3 presentation7
mathteacher13
 
ANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSOANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSO
TABATHA PAREDES
 
Data Segmentation For Privacy Himss 2012 Fina Lv2
Data Segmentation For Privacy Himss 2012 Fina Lv2Data Segmentation For Privacy Himss 2012 Fina Lv2
Data Segmentation For Privacy Himss 2012 Fina Lv2
SRSINC
 
State of micro pensions in india
State of micro pensions in indiaState of micro pensions in india
State of micro pensions in india
CIRM
 
California
CaliforniaCalifornia
California
missaudria
 
Een website bouwen en onderhouden (MacBeurs 2010)
Een website bouwen en onderhouden (MacBeurs 2010)Een website bouwen en onderhouden (MacBeurs 2010)
Een website bouwen en onderhouden (MacBeurs 2010)
Inventis Web Architects
 
Inventor centre presentation
Inventor centre presentationInventor centre presentation
Inventor centre presentation
smcpeak
 
Ppt0000000
Ppt0000000Ppt0000000
Ppt0000000
gwobgyn
 
Presentacion
PresentacionPresentacion
Presentacion
txemi
 
Qualitative study pashu_dhan
Qualitative study pashu_dhanQualitative study pashu_dhan
Qualitative study pashu_dhan
CIRM
 
Presentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nlPresentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nl
SnelSchot
 
Isak (land. sosio & psiko penjas olahraga)
Isak (land. sosio & psiko penjas olahraga)Isak (land. sosio & psiko penjas olahraga)
Isak (land. sosio & psiko penjas olahraga)
Kabupaten Sabu - Raijua (SARAI)
 
Team Detroit's SXSW Marketing as a Service Panel
Team Detroit's SXSW Marketing as a Service PanelTeam Detroit's SXSW Marketing as a Service Panel
Team Detroit's SXSW Marketing as a Service Panel
Tony Vecchiato
 
Modern latin america
Modern latin americaModern latin america
Modern latin america
missaudria
 
A difficult past
A difficult pastA difficult past
A difficult past
missaudria
 
Credit cards lesson 8
Credit cards lesson 8Credit cards lesson 8
Credit cards lesson 8
mathteacher13
 
impact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rctimpact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rct
CIRM
 
ANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSOANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSO
TABATHA PAREDES
 
Data Segmentation For Privacy Himss 2012 Fina Lv2
Data Segmentation For Privacy Himss 2012 Fina Lv2Data Segmentation For Privacy Himss 2012 Fina Lv2
Data Segmentation For Privacy Himss 2012 Fina Lv2
SRSINC
 
State of micro pensions in india
State of micro pensions in indiaState of micro pensions in india
State of micro pensions in india
CIRM
 
Een website bouwen en onderhouden (MacBeurs 2010)
Een website bouwen en onderhouden (MacBeurs 2010)Een website bouwen en onderhouden (MacBeurs 2010)
Een website bouwen en onderhouden (MacBeurs 2010)
Inventis Web Architects
 
Inventor centre presentation
Inventor centre presentationInventor centre presentation
Inventor centre presentation
smcpeak
 
Ppt0000000
Ppt0000000Ppt0000000
Ppt0000000
gwobgyn
 
Presentacion
PresentacionPresentacion
Presentacion
txemi
 
Qualitative study pashu_dhan
Qualitative study pashu_dhanQualitative study pashu_dhan
Qualitative study pashu_dhan
CIRM
 
Presentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nlPresentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nl
SnelSchot
 
Team Detroit's SXSW Marketing as a Service Panel
Team Detroit's SXSW Marketing as a Service PanelTeam Detroit's SXSW Marketing as a Service Panel
Team Detroit's SXSW Marketing as a Service Panel
Tony Vecchiato
 
Modern latin america
Modern latin americaModern latin america
Modern latin america
missaudria
 
A difficult past
A difficult pastA difficult past
A difficult past
missaudria
 
Credit cards lesson 8
Credit cards lesson 8Credit cards lesson 8
Credit cards lesson 8
mathteacher13
 

Similar to Fronttechnieken met HTML5 en de Slice-template (20)

Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
Terry Ryan
 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standards
Justin Avery
 
An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5
Robert Nyman
 
Html5, a gentle introduction
Html5, a gentle introduction Html5, a gentle introduction
Html5, a gentle introduction
Diego Scataglini
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
Steven Chipman
 
Html 5, a gentle introduction
Html 5, a gentle introductionHtml 5, a gentle introduction
Html 5, a gentle introduction
Diego Scataglini
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Ashok Suragala
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
PL dream
 
Html5 quick learning guide
Html5 quick learning guideHtml5 quick learning guide
Html5 quick learning guide
Prima Utama Apriansyah
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Jerry Wijaya
 
Html5
Html5Html5
Html5
Satoshi Kikuchi
 
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)
Ahsan Rahim
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
Dalibor Gogic
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
Gonzalo Cordero
 
Apex & jQuery Mobile
Apex & jQuery MobileApex & jQuery Mobile
Apex & jQuery Mobile
Christian Rokitta
 
Artdm171 Week4 Tags
Artdm171 Week4 TagsArtdm171 Week4 Tags
Artdm171 Week4 Tags
Gilbert Guerrero
 
Day1-HTML-CSS some basic css and html.pdf
Day1-HTML-CSS some basic css and html.pdfDay1-HTML-CSS some basic css and html.pdf
Day1-HTML-CSS some basic css and html.pdf
enasashri12
 
Html5 Brown Bag
Html5 Brown BagHtml5 Brown Bag
Html5 Brown Bag
stuplum
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
Elena Michelle
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
Anchal Thakur
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
Terry Ryan
 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standards
Justin Avery
 
An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5
Robert Nyman
 
Html5, a gentle introduction
Html5, a gentle introduction Html5, a gentle introduction
Html5, a gentle introduction
Diego Scataglini
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
Steven Chipman
 
Html 5, a gentle introduction
Html 5, a gentle introductionHtml 5, a gentle introduction
Html 5, a gentle introduction
Diego Scataglini
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Ashok Suragala
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
PL dream
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
Jerry Wijaya
 
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)
Ahsan Rahim
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
Dalibor Gogic
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
Gonzalo Cordero
 
Day1-HTML-CSS some basic css and html.pdf
Day1-HTML-CSS some basic css and html.pdfDay1-HTML-CSS some basic css and html.pdf
Day1-HTML-CSS some basic css and html.pdf
enasashri12
 
Html5 Brown Bag
Html5 Brown BagHtml5 Brown Bag
Html5 Brown Bag
stuplum
 

Recently uploaded (20)

How to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabberHow to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabber
eGrabber
 
AI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamsonAI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamson
UXPA Boston
 
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptxDevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
Justin Reock
 
Viam product demo_ Deploying and scaling AI with hardware.pdf
Viam product demo_ Deploying and scaling AI with hardware.pdfViam product demo_ Deploying and scaling AI with hardware.pdf
Viam product demo_ Deploying and scaling AI with hardware.pdf
camilalamoratta
 
Shoehorning dependency injection into a FP language, what does it take?
Shoehorning dependency injection into a FP language, what does it take?Shoehorning dependency injection into a FP language, what does it take?
Shoehorning dependency injection into a FP language, what does it take?
Eric Torreborre
 
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient CareAn Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
Cyntexa
 
AI x Accessibility UXPA by Stew Smith and Olivier Vroom
AI x Accessibility UXPA by Stew Smith and Olivier VroomAI x Accessibility UXPA by Stew Smith and Olivier Vroom
AI x Accessibility UXPA by Stew Smith and Olivier Vroom
UXPA Boston
 
IT484 Cyber Forensics_Information Technology
IT484 Cyber Forensics_Information TechnologyIT484 Cyber Forensics_Information Technology
IT484 Cyber Forensics_Information Technology
SHEHABALYAMANI
 
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
Ivano Malavolta
 
Top-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptxTop-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptx
BR Softech
 
Artificial_Intelligence_in_Everyday_Life.pptx
Artificial_Intelligence_in_Everyday_Life.pptxArtificial_Intelligence_in_Everyday_Life.pptx
Artificial_Intelligence_in_Everyday_Life.pptx
03ANMOLCHAURASIYA
 
May Patch Tuesday
May Patch TuesdayMay Patch Tuesday
May Patch Tuesday
Ivanti
 
Q1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor PresentationQ1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor Presentation
Dropbox
 
Slack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teamsSlack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teams
Nacho Cougil
 
Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...
Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...
Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...
Markus Eisele
 
Config 2025 presentation recap covering both days
Config 2025 presentation recap covering both daysConfig 2025 presentation recap covering both days
Config 2025 presentation recap covering both days
TrishAntoni1
 
Build With AI - In Person Session Slides.pdf
Build With AI - In Person Session Slides.pdfBuild With AI - In Person Session Slides.pdf
Build With AI - In Person Session Slides.pdf
Google Developer Group - Harare
 
RTP Over QUIC: An Interesting Opportunity Or Wasted Time?
RTP Over QUIC: An Interesting Opportunity Or Wasted Time?RTP Over QUIC: An Interesting Opportunity Or Wasted Time?
RTP Over QUIC: An Interesting Opportunity Or Wasted Time?
Lorenzo Miniero
 
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Wonjun Hwang
 
Mastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B LandscapeMastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B Landscape
marketing943205
 
How to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabberHow to Install & Activate ListGrabber - eGrabber
How to Install & Activate ListGrabber - eGrabber
eGrabber
 
AI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamsonAI-proof your career by Olivier Vroom and David WIlliamson
AI-proof your career by Olivier Vroom and David WIlliamson
UXPA Boston
 
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptxDevOpsDays SLC - Platform Engineers are Product Managers.pptx
DevOpsDays SLC - Platform Engineers are Product Managers.pptx
Justin Reock
 
Viam product demo_ Deploying and scaling AI with hardware.pdf
Viam product demo_ Deploying and scaling AI with hardware.pdfViam product demo_ Deploying and scaling AI with hardware.pdf
Viam product demo_ Deploying and scaling AI with hardware.pdf
camilalamoratta
 
Shoehorning dependency injection into a FP language, what does it take?
Shoehorning dependency injection into a FP language, what does it take?Shoehorning dependency injection into a FP language, what does it take?
Shoehorning dependency injection into a FP language, what does it take?
Eric Torreborre
 
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient CareAn Overview of Salesforce Health Cloud & How is it Transforming Patient Care
An Overview of Salesforce Health Cloud & How is it Transforming Patient Care
Cyntexa
 
AI x Accessibility UXPA by Stew Smith and Olivier Vroom
AI x Accessibility UXPA by Stew Smith and Olivier VroomAI x Accessibility UXPA by Stew Smith and Olivier Vroom
AI x Accessibility UXPA by Stew Smith and Olivier Vroom
UXPA Boston
 
IT484 Cyber Forensics_Information Technology
IT484 Cyber Forensics_Information TechnologyIT484 Cyber Forensics_Information Technology
IT484 Cyber Forensics_Information Technology
SHEHABALYAMANI
 
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
On-Device or Remote? On the Energy Efficiency of Fetching LLM-Generated Conte...
Ivano Malavolta
 
Top-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptxTop-AI-Based-Tools-for-Game-Developers (1).pptx
Top-AI-Based-Tools-for-Game-Developers (1).pptx
BR Softech
 
Artificial_Intelligence_in_Everyday_Life.pptx
Artificial_Intelligence_in_Everyday_Life.pptxArtificial_Intelligence_in_Everyday_Life.pptx
Artificial_Intelligence_in_Everyday_Life.pptx
03ANMOLCHAURASIYA
 
May Patch Tuesday
May Patch TuesdayMay Patch Tuesday
May Patch Tuesday
Ivanti
 
Q1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor PresentationQ1 2025 Dropbox Earnings and Investor Presentation
Q1 2025 Dropbox Earnings and Investor Presentation
Dropbox
 
Slack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teamsSlack like a pro: strategies for 10x engineering teams
Slack like a pro: strategies for 10x engineering teams
Nacho Cougil
 
Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...
Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...
Enterprise Integration Is Dead! Long Live AI-Driven Integration with Apache C...
Markus Eisele
 
Config 2025 presentation recap covering both days
Config 2025 presentation recap covering both daysConfig 2025 presentation recap covering both days
Config 2025 presentation recap covering both days
TrishAntoni1
 
RTP Over QUIC: An Interesting Opportunity Or Wasted Time?
RTP Over QUIC: An Interesting Opportunity Or Wasted Time?RTP Over QUIC: An Interesting Opportunity Or Wasted Time?
RTP Over QUIC: An Interesting Opportunity Or Wasted Time?
Lorenzo Miniero
 
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Kit-Works Team Study_아직도 Dockefile.pdf_김성호
Wonjun Hwang
 
Mastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B LandscapeMastering Testing in the Modern F&B Landscape
Mastering Testing in the Modern F&B Landscape
marketing943205
 

Fronttechnieken met HTML5 en de Slice-template

  • 1. Pruuuu uuuuuu vroem, uuuuut !!! vroem !!! HTML5 & SLICE-TEMPLATE Door Stijn en Tom
  • 3. WAT IS HTML5 NIET? • Web 3.0 • CSS3 • Flash
  • 5. WAT IS HTML5? • <!doctype html> • Vereenvoudiging van tags (script, link, ...) • Nieuwe tags (article, section, ...) • Nieuwe input types (number, e-mail, ...) • Nieuwe API’s (WebWorkers, WebSockets, History, ...)
  • 6. WAT GAAN WE GEBRUIKEN? • <!doctype html> • Vereenvoudiging van tags (script, link, ...) • Nieuwe tags (article, section, ...) • Nieuwe input types (number, e-mail, ...) • Nieuwe API’s (WebWorkers, WebSockets, History, ...)
  • 7. WELKE BROWSERS? • Chrome • Safari • Firefox 4 • Internet Explorer 9 • Opera
  • 8. WAT MET DE REST? • Modernizr • HTML5shiv • ...
  • 9. DOCTYPE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!doctype html>
  • 10. EENVOUDIGERE TAGS <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="design/css/layout.css" rel="stylesheet" type="text/css" /> <script src=”javascript/libs/jquery-1.4.4.min.js” type=”text/javascript></script> <meta charset="utf-8"> <link rel="stylesheet" href="design/css/style.css" /> <script src=”javascript/libs/jquery-1.4.4.min.js”></script>
  • 11. <!doctype html> NIEUWE TAGS <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> </head> <body> <header> <nav> <ul id="navigation"> <li class="active"><a href="#">Home</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="content"> <article> ... </article> <aside> ... </aside> </section> <footer> Copyright </footer> </body> </html>
  • 12. <!doctype html> NIEUWE TAGS <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> </head> <body> <header> <nav> <ul id="navigation"> <li class="active"><a href="#">Home</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="content"> <article> ... </article> <aside> ... </aside> </section> <footer> Copyright </footer> </body> </html>
  • 13. <!doctype html> NIEUWE TAGS <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> </head> <body> <header> <nav> <ul id="navigation"> <li class="active"><a href="#">Home</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="content"> <article> ... </article> <aside> ... </aside> </section> <footer> Copyright </footer> </body> </html>
  • 14. <!doctype html> NIEUWE TAGS <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> </head> <body> <header> <nav> <ul id="navigation"> <li class="active"><a href="#">Home</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="content"> <article> ... </article> <aside> ... </aside> </section> <footer> Copyright </footer> </body> </html>
  • 15. <!doctype html> NIEUWE TAGS <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> </head> <body> <header> <nav> <ul id="navigation"> <li class="active"><a href="#">Home</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="content"> <article> ... </article> <aside> ... </aside> </section> <footer> Copyright </footer> </body> </html>
  • 16. <!doctype html> NIEUWE TAGS <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> </head> <body> <header> <nav> <ul id="navigation"> <li class="active"><a href="#">Home</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="content"> <article> ... </article> <aside> ... </aside> </section> <footer> Copyright </footer> </body> </html>
  • 17. <!doctype html> NIEUWE TAGS <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> </head> <body> <header> <nav> <ul id="navigation"> <li class="active"><a href="#">Home</a></li> <li><a href="#">News</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <section id="content"> <article> ... </article> <aside> ... </aside> </section> <footer> Copyright </footer> </body> </html>
  • 20. <nav>
  • 25. ARTICLE VS. SECTION <article> <section> ... ... </article> </section> The section element represents a generic section of a document or application. A section, in this context, is a thematic grouping of content, typically with a heading. If you could see the content as an item or entry in an RSS feed, wrap it in an article. Otherwise, use section.
  • 26. NIEUWE TAGS • <figure> • <figcaption> • <time> • ...
  • 28. INPUT TYPES • search • email • url • number (spinbox) • range • date/datetime/week/month/time/... • novalidate
  • 30. SLICING TEMPLATE Door den Tom
  • 31. “A default slicing template to create a uniform style of slicing websites”
  • 64. TOM@INVENTIS.BE ....of op kantoor van 8u tot 16u30.

Editor's Notes

  翻译: