SlideShare uma empresa Scribd logo
1 de 64
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.

Mais conteúdo relacionado

Mais procurados

CSS Frameworks
CSS FrameworksCSS Frameworks
CSS FrameworksMike Crabb
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5Terry 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 BasicsTahir Shahzad
 
HTML5 - Just the basics
HTML5 - Just the basicsHTML5 - Just the basics
HTML5 - Just the basicsJames VanDyke
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basicsEliran Eliassy
 
HTML 5 Fundamental
HTML 5 FundamentalHTML 5 Fundamental
HTML 5 FundamentalLanh Le
 
HTML Semantic Tags
HTML Semantic TagsHTML Semantic Tags
HTML Semantic TagsBruce Kyle
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSSdanpaquette
 
HTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampHTML/CSS Workshop @ Searchcamp
HTML/CSS Workshop @ SearchcampJames Mills
 
HTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersHTML, CSS, JavaScript for beginners
HTML, CSS, JavaScript for beginnersPrakritiDhang
 
Layout with CSS
Layout with CSSLayout with CSS
Layout with CSSMike Crabb
 
SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014SharePoint & jQuery Guide - SPSNashville 2014
SharePoint & jQuery Guide - SPSNashville 2014Mark 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 4Amanda Case
 

Mais procurados (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
 

Destaque

impact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rctimpact_evaluation_of_hmi_through_rct
impact_evaluation_of_hmi_through_rctCIRM
 
ANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSOANATOMIA DE SISTEMA NERVIOSO
ANATOMIA DE SISTEMA NERVIOSOTABATHA 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 Lv2SRSINC
 
State of micro pensions in india
State of micro pensions in indiaState of micro pensions in india
State of micro pensions in indiaCIRM
 
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 presentationsmcpeak
 
Ppt0000000
Ppt0000000Ppt0000000
Ppt0000000gwobgyn
 
Presentacion
PresentacionPresentacion
Presentaciontxemi
 
Qualitative study pashu_dhan
Qualitative study pashu_dhanQualitative study pashu_dhan
Qualitative study pashu_dhanCIRM
 
Presentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nlPresentatie Trendy Hotels.nl
Presentatie Trendy Hotels.nlSnelSchot
 
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 PanelTony Vecchiato
 
Modern latin america
Modern latin americaModern latin america
Modern latin americamissaudria
 
A difficult past
A difficult pastA difficult past
A difficult pastmissaudria
 
Credit cards lesson 8
Credit cards lesson 8Credit cards lesson 8
Credit cards lesson 8mathteacher13
 

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

Semelhante a Fronttechnieken met HTML5 en de Slice-template

Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Terry Ryan
 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standardsJustin Avery
 
An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5Robert 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 HTML5Steven Chipman
 
Html 5, a gentle introduction
Html 5, a gentle introductionHtml 5, a gentle introduction
Html 5, a gentle introductionDiego Scataglini
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quideAshok Suragala
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quideJerry Wijaya
 
Html5 quick-learning-quide
Html5 quick-learning-quideHtml5 quick-learning-quide
Html5 quick-learning-quidePL dream
 
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 nowGonzalo Cordero
 
Html5 Brown Bag
Html5 Brown BagHtml5 Brown Bag
Html5 Brown Bagstuplum
 

Semelhante a 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 guide
Html5 quick learning guideHtml5 quick learning guide
Html5 quick learning guide
 
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
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
 

Último

Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 

Último (20)

Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 

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.

Notas do Editor

  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