尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
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>
<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
SLICING TEMPLATE
    Door den Tom
“A default slicing template to create a
  uniform style of slicing websites”
GITHUB.COM/INVENTIS
MAPPEN STRUCTUUR
<HTML>
<HEAD>
</HEAD>
<BODY>
</BODY>
</HTML>
GITHUB.COM/INVENTIS
TOM@INVENTIS.BE
 ....of op kantoor van 8u tot 16u30.

More Related Content

What's hot

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
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
 

What's hot (20)

CSS Frameworks
CSS FrameworksCSS Frameworks
CSS Frameworks
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
 
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)
 
Front End Web Development Basics
Front End Web Development BasicsFront End Web Development Basics
Front End Web Development Basics
 
HTML5 - Just the basics
HTML5 - Just the basicsHTML5 - Just the basics
HTML5 - Just the basics
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
HTML 5 Fundamental
HTML 5 FundamentalHTML 5 Fundamental
HTML 5 Fundamental
 
HTML Semantic Tags
HTML Semantic TagsHTML Semantic Tags
HTML Semantic Tags
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ Searchcamp
 
Css
CssCss
Css
 
HTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersHTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginners
 
Layout with CSS
Layout with CSSLayout with CSS
Layout with CSS
 
SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014
 
google logo
google logogoogle logo
google logo
 
Html5 semantics
Html5 semanticsHtml5 semantics
Html5 semantics
 
Html5的应用与推行
Html5的应用与推行Html5的应用与推行
Html5的应用与推行
 
実務導入に向けたAngularの始め方@Angular入門者の会
実務導入に向けたAngularの始め方@Angular入門者の会実務導入に向けたAngularの始め方@Angular入門者の会
実務導入に向けたAngularの始め方@Angular入門者の会
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
 

Viewers also liked

Tlc presentation
Tlc presentationTlc presentation
Tlc presentation
Charissa Black
 
Pollo
PolloPollo
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
Presentaciontxemi
 
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
 

Viewers also liked (20)

Tlc presentation
Tlc presentationTlc presentation
Tlc presentation
 
Pollo
PolloPollo
Pollo
 
impact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rctimpact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rct
 
L3 presentation7
L3 presentation7L3 presentation7
L3 presentation7
 
ANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSOANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSO
 
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
 
State of micro pensions in india
State of micro pensions in indiaState of micro pensions in india
State of micro pensions in india
 
California
CaliforniaCalifornia
California
 
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)
 
Inventor centre presentation
Inventor centre presentationInventor centre presentation
Inventor centre presentation
 
Ppt0000000
Ppt0000000Ppt0000000
Ppt0000000
 
Presentacion
PresentacionPresentacion
Presentacion
 
Landasan historis pendidikan dan pembelajaran
Landasan historis pendidikan dan pembelajaranLandasan historis pendidikan dan pembelajaran
Landasan historis pendidikan dan pembelajaran
 
Qualitative study pashu_dhan
Qualitative study pashu_dhanQualitative study pashu_dhan
Qualitative study pashu_dhan
 
Presentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nlPresentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nl
 
Isak (land. sosio & psiko penjas olahraga)
Isak (land. sosio & psiko penjas olahraga)Isak (land. sosio & psiko penjas olahraga)
Isak (land. sosio & psiko penjas olahraga)
 
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
 
Modern latin america
Modern latin americaModern latin america
Modern latin america
 
A difficult past
A difficult pastA difficult past
A difficult past
 
Credit cards lesson 8
Credit cards lesson 8Credit cards lesson 8
Credit cards lesson 8
 

Similar to Fronttechnieken met HTML5 en de Slice-template

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
PL dream
 
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
Jerry Wijaya
 
Html5 quick learning guide
Html5 quick learning guideHtml5 quick learning guide
Html5 quick learning guide
Prima Utama Apriansyah
 
Html5
Html5Html5
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
 
Html5 Brown Bag
Html5 Brown BagHtml5 Brown Bag
Html5 Brown Bag
stuplum
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
Anchal Thakur
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
Elena Michelle
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
Tadpole Collective
 

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

Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standards
 
An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5
 
Html5, a gentle introduction
Html5, a gentle introduction Html5, a gentle introduction
Html5, a gentle introduction
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
 
Html 5, a gentle introduction
Html 5, a gentle introductionHtml 5, a gentle introduction
Html 5, a gentle introduction
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quide
 
Html5 quick learning guide
Html5 quick learning guideHtml5 quick learning guide
Html5 quick learning guide
 
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)
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
 
Apex & jQuery Mobile
Apex & jQuery MobileApex & jQuery Mobile
Apex & jQuery Mobile
 
Artdm171 Week4 Tags
Artdm171 Week4 TagsArtdm171 Week4 Tags
Artdm171 Week4 Tags
 
Html5 Brown Bag
Html5 Brown BagHtml5 Brown Bag
Html5 Brown Bag
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
 

Recently uploaded

Fuxnet [EN] .pdf
Fuxnet [EN]                                   .pdfFuxnet [EN]                                   .pdf
Fuxnet [EN] .pdf
Overkill Security
 
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc
 
Cyber Recovery Wargame
Cyber Recovery WargameCyber Recovery Wargame
Cyber Recovery Wargame
Databarracks
 
APJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes WebinarAPJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes Webinar
ThousandEyes
 
Guidelines for Effective Data Visualization
Guidelines for Effective Data VisualizationGuidelines for Effective Data Visualization
Guidelines for Effective Data Visualization
UmmeSalmaM1
 
Discover the Unseen: Tailored Recommendation of Unwatched Content
Discover the Unseen: Tailored Recommendation of Unwatched ContentDiscover the Unseen: Tailored Recommendation of Unwatched Content
Discover the Unseen: Tailored Recommendation of Unwatched Content
ScyllaDB
 
MongoDB vs ScyllaDB: Tractian’s Experience with Real-Time ML
MongoDB vs ScyllaDB: Tractian’s Experience with Real-Time MLMongoDB vs ScyllaDB: Tractian’s Experience with Real-Time ML
MongoDB vs ScyllaDB: Tractian’s Experience with Real-Time ML
ScyllaDB
 
Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
Tobias Schneck
 
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
AlexanderRichford
 
Automation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI AutomationAutomation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI Automation
UiPathCommunity
 
An All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS MarketAn All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS Market
ScyllaDB
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
UiPathCommunity
 
Introduction to ThousandEyes AMER Webinar
Introduction  to ThousandEyes AMER WebinarIntroduction  to ThousandEyes AMER Webinar
Introduction to ThousandEyes AMER Webinar
ThousandEyes
 
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
zjhamm304
 
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State StoreElasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
ScyllaDB
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
Pablo Gómez Abajo
 
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - MydbopsMySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
Mydbops
 
An Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise IntegrationAn Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise Integration
Safe Software
 
So You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental DowntimeSo You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental Downtime
ScyllaDB
 
Radically Outperforming DynamoDB @ Digital Turbine with SADA and Google Cloud
Radically Outperforming DynamoDB @ Digital Turbine with SADA and Google CloudRadically Outperforming DynamoDB @ Digital Turbine with SADA and Google Cloud
Radically Outperforming DynamoDB @ Digital Turbine with SADA and Google Cloud
ScyllaDB
 

Recently uploaded (20)

Fuxnet [EN] .pdf
Fuxnet [EN]                                   .pdfFuxnet [EN]                                   .pdf
Fuxnet [EN] .pdf
 
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
 
Cyber Recovery Wargame
Cyber Recovery WargameCyber Recovery Wargame
Cyber Recovery Wargame
 
APJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes WebinarAPJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes Webinar
 
Guidelines for Effective Data Visualization
Guidelines for Effective Data VisualizationGuidelines for Effective Data Visualization
Guidelines for Effective Data Visualization
 
Discover the Unseen: Tailored Recommendation of Unwatched Content
Discover the Unseen: Tailored Recommendation of Unwatched ContentDiscover the Unseen: Tailored Recommendation of Unwatched Content
Discover the Unseen: Tailored Recommendation of Unwatched Content
 
MongoDB vs ScyllaDB: Tractian’s Experience with Real-Time ML
MongoDB vs ScyllaDB: Tractian’s Experience with Real-Time MLMongoDB vs ScyllaDB: Tractian’s Experience with Real-Time ML
MongoDB vs ScyllaDB: Tractian’s Experience with Real-Time ML
 
Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
 
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
 
Automation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI AutomationAutomation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI Automation
 
An All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS MarketAn All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS Market
 
Day 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio FundamentalsDay 2 - Intro to UiPath Studio Fundamentals
Day 2 - Intro to UiPath Studio Fundamentals
 
Introduction to ThousandEyes AMER Webinar
Introduction  to ThousandEyes AMER WebinarIntroduction  to ThousandEyes AMER Webinar
Introduction to ThousandEyes AMER Webinar
 
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...QA or the Highway - Component Testing: Bridging the gap between frontend appl...
QA or the Highway - Component Testing: Bridging the gap between frontend appl...
 
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State StoreElasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
 
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - MydbopsMySQL InnoDB Storage Engine: Deep Dive - Mydbops
MySQL InnoDB Storage Engine: Deep Dive - Mydbops
 
An Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise IntegrationAn Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise Integration
 
So You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental DowntimeSo You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental Downtime
 
Radically Outperforming DynamoDB @ Digital Turbine with SADA and Google Cloud
Radically Outperforming DynamoDB @ Digital Turbine with SADA and Google CloudRadically Outperforming DynamoDB @ Digital Turbine with SADA and Google Cloud
Radically Outperforming DynamoDB @ Digital Turbine with SADA and Google Cloud
 

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>
  • 18.
  • 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
  • 29.
  • 30. SLICING TEMPLATE Door den Tom
  • 31. “A default slicing template to create a uniform style of slicing websites”
  • 33.
  • 34.
  • 35.
  • 38.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 53.
  • 54.
  • 55.
  • 56.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64. TOM@INVENTIS.BE ....of op kantoor van 8u tot 16u30.

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. \n
  58. \n
  59. \n
  60. \n
  61. \n
  62. \n
  63. \n
  64. \n
  65. \n
  66. \n
  67. \n
  68. \n
  69. \n
  70. \n
  71. \n
  72. \n
  73. \n
  74. \n
  75. \n
  76. \n
  77. \n
  78. \n
  79. \n
  80. \n
  81. \n
  82. \n
  83. \n
  84. \n
  85. \n
  86. \n
  87. \n
  88. \n
  89. \n
  90. \n
  91. \n
  翻译: