SlideShare a Scribd company logo
1 of 63
Download to read offline
HTML
SEMANTICS
Shay Howe
@shayhowe
www.shayhowe.com
HTML Semantics
SHAY HOWE
www.shayhowe.com – @shayhowe
@shayhowe
WHY SEMANTICS?
@shayhoweHTML Semantics
WHY SEMANTICS?
Unambiguous, shared meaning
Give content significant value and meaning.
Accessibility
Provide information to assistive technologies.
Search & globalization
Improve visibility and internalization.
Interoperability
Allow exchange and use of information.
@shayhoweHTML Semantics
STRUCTURAL
@shayhoweHTML Semantics
STRUCTURAL ELEMENTS
@shayhowe
Header
Introductory or
navigational aids.
Nav
Section with navigational
links.
Article
Independently reusable
content.
Section
Generically, thematic
grouping.
Aside
Tangentially related
content.
Footer
Closing related content.
HTML Semantics
STRUCTURAL ELEMENTS
<body>
    <header>
        <nav>...</nav>
    </header>
    <article>
        <section>...</section>
    </article>
    <aside>...</aside>
    <footer>...</footer>
</body>
@shayhoweHTML Semantics
ARIA ROLES
<body>
    <header  role="banner">
        <nav  role="navigation">...</nav>
    </header>
    <article  role="article">
        <section  role="region">...</section>
    </article>
    <aside  role="complementary">...</aside>
    <footer  role="contentinfo">...</footer>
</body>
@shayhoweHTML Semantics
TEXT
@shayhoweHTML Semantics
BOLDING TEXT
B
<b>...</b>
Stylistically offset without importance.
Strong
<strong>...</strong>
Strong emphasis.
@shayhoweHTML Semantics
ITALICIZING TEXT
I
<i>...</i>
Alternative voice or tone.
Em
<em>...</em>
Stressed emphasis.
@shayhoweHTML Semantics
UNDERLINING TEXT
U
<u>...</u>
An unarticulated annotation.
Ins
<ins  cite="#"  datetime="2011-­‐08-­‐24">...</ins>
Text added to the document.
@shayhoweHTML Semantics
STRIKING TEXT
S
<s>...</s>
No longer accurate or relevant.
Del
<del  cite="#"  datetime="2011-­‐08-­‐24">...</del>
Text deleted from the document.
@shayhoweHTML Semantics
NAVIGATION & ACTIONS
Nav
<nav>...</nav>
Major navigational links.
Menu
<menu>...</menu>
Group of controls, commonly within web apps.
@shayhoweHTML Semantics
HYPERLINKS
Inline
<p><a  href="http://www.shayhowe.com/">Shay  
    Howe</a>  is  a  front-­‐end  web  designer  and  
    developer.</p>
Block
<a  href="http://www.shayhowe.com/">
<h1>Shay  Howe</h1>
<p>Front-­‐end  web  designer  and  developer.</p>
</a>
@shayhoweHTML Semantics
HYPERLINK DOWNLOAD
Boolean
<a  href="logo.png"  download>
    Company  Logo
</a>
With a value
<a  href="logo.png"  download="Company-­‐Logo">
    Company  Logo
</a>
@shayhoweHTML Semantics
HYPERLINK REL ATTRIBUTE
Possible Values
<a  href="legal.html"  rel="copyright">
    Privacy  Policy/Terms  of  Use
</a>
@shayhowe
license
next
prev
prev
section
subsection
start
stylesheet
tag
alternate
appendix
bookmark
chapter
contents
contents
copyright
glossary
help
index
HTML Semantics
CITATIONS
Cite
<p><cite><a  href="#">Steve  Jobs</a></cite>  by  
    Walter  Isaacson  is  truly  inspirational.</p>
Specifically a reference to a title of work.
@shayhoweHTML Semantics
QUOTATIONS
Q
<p><a  href="#">Steve  Jobs</a>  once  said,  <q  
    cite="#">Stay  hungry,  stay  foolish.</q></p>
Short, inline quotation.
Blockquote
<blockquote  cite="#">
    <p>Design  is  a  funny  word...</p>
    <p><a  href="#">Steve  Jobs</a>  in  <cite><a  
        href="#">Fortune  Magazine</a></cite></p>
</blockquote>
Longer, extended quotation.
@shayhoweHTML Semantics
LANGUAGE SUPPORT
English
q:lang(en)  {
    quotes:  "201C"  "201D"  "2018"  "2019";
}
“English quote with a ‘nested’ quote.”
French
q:lang(fr)  {
    quotes:  "AB"  "BB";
}
«French quote with a «nested» quote.»
@shayhoweHTML Semantics
HIGHLIGHTING TEXT
<h1>Search  results  for  'chicago'</h1>
<ol>
    <li>
        <a  href="http://www.shayhowe.com/">Shay  is  
            from  <mark>Chicago</mark>.</a>
    </li>
</ol>
@shayhoweHTML Semantics
GAUGING SCALE
<meter>7  out  of  10  stars</meter>
<meter  max="10">7  stars</meter>
<meter  min="0"  max="105"  low="5"  high="65"    
    optimum="45"  value="47">The  car  is  moving  at  
    a  decent  average  mile  per  hour.</meter>
@shayhoweHTML Semantics
INDICATING PROGRESS
You  are  <progress>50%</progress>  complete.
<progress  min="0"  max="100"  value="50">Hold  
    tight,  your  getting  there.</progress>
@shayhoweHTML Semantics
REPRESENTING TIME
<time  datetime="15:00">3pm</time>
<time  datetime="2011-­‐08-­‐24">August  24th,  2011</
time>
<time  datetime="2011-­‐08-­‐24T15:00">August  24th,
    2011  at  3pm</time>
<time  datetime="2011-­‐08-­‐24"  pubdate>August
    24th,  2011</time>
<time>2011-­‐08-­‐24</time>
@shayhoweHTML Semantics
HIDING CONTENT
Good
<div  hidden>...</div>
Element, and contents, are not yet, or no longer relevant.
Not as Good
<div  style="display:  none;">...</div>
No value, commonly read by assistive technology.
@shayhoweHTML Semantics
USING PSEUDO SELECTORS
HTML
<p>Hello  <abbr  title="and">&amp;</abbr>  
    welcome...</p>
CSS
p:first-­‐letter  {
    font-­‐size:  40px;
}
abbr[title="and"]  {
    font:  italic  18px  Baskerville,  serif;    
}
Hello & welcome...
@shayhoweHTML Semantics
LIST
@shayhoweHTML Semantics
SETTING A START
<ol  start="30">
    <li>30</li>
    <li>31</li>
    <li>32</li>
    <li>33</li>
</ol>
<ol  start="30">
    <li>30</li>
    <li>31</li>
    <li  value="40">40</li>
    <li>41</li>
</ol>
@shayhoweHTML Semantics
REVERSING A LIST
<ol  reversed>
    <li>4</li>
    <li>3</li>
    <li>2</li>
    <li>1</li>
</ol>
<ol  reversed>
    <li>4</li>
    <li>3</li>
    <li  value="30">30</li>
    <li>29</li>
</ol>
@shayhoweHTML Semantics
IMAGES
@shayhoweHTML Semantics
FIGURE & FIGCAPTION
<figure>
    <img  src="shay.jpg"  height="300"  width="200">
    <figcaption>Shay  Howe,  the  Man</figcaption>
</figure>
<figure>
    <img  src="june.jpg"  height="200"  width="200">
    <img  src="july.jpg"  height="200"  width="200">
    <figcpation>Summer  Months</figcaption>
</figure>
@shayhoweHTML Semantics
ALT VS. TITLE TEXT
Alternate Text
Replace an image, should it not be available
Title Text
Provide a description of an image
<img  src="june.jpg"  height="200"  width="200"  
    alt="June  is  a  summer  month  with  30  days,  
    coming  after  May  and  before  July"  
    title="Month  of  June">
@shayhoweHTML Semantics
VIDEO
@shayhoweHTML Semantics
VIDEO
<video  src="movie.webm"  height="390"  
    width="640">
</video>
<video  src="movie.webm"  height="390"  
    width="640"  poster="poster.jpg"
    preload="auto"  autoplay  controls  loop  muted>
</video>
@shayhoweHTML Semantics
VIDEO FALLBACKS
<video  height="390"  width="640"  poster="poster.jpg">
    <source  src="movie.webm"
        type='video/webm;  codecs="vp8,  vorbis"'>
    <source  src="movie.mp4"
        type='video/mp4;  codecs="avc1.4D401E,  mp4a.40.2"'>
    <source  src="movie.ogv"
        type='video/ogg;  codecs="theora,  voris"'>
    <object  type="application/x-­‐shockwave-­‐flash"  
        data="player.swf">
<img  src="poster.jpg"  alt=""  title="Movie  Poster">
<p><strong>Download  Movie:</strong>
    <a  href="movie.webm"  download>WebM</a>,
    <a  href="movie.mp4"  download>MPEG-­‐4</a>,
    <a  href="movie.ogv"  download>Ogg</a>.</p>
</object>
</video>
@shayhoweHTML Semantics
VIDEO TRACKS
<video  height="390"  width="640"  poster="poster.jpg">
    <source  src="movie.webm"
        type='video/webm;  codecs="vp8,  vorbis"'>
    <source  src="movie.mp4"
        type='video/mp4;  codecs="avc1.4D401E,  mp4a.40.2"'>
    <source  src="movie.ogv"
        type='video/ogg;  codecs="theora,  voris"'>
    <track  kind="captions"  label="English  Captions"  
        src="english-­‐cc.vtt"  srclang="en"  default>
    <track  kind="subtitles"  label="English  Subtitles"  
        src="english-­‐st.vtt"  srclang="en">
    <track  kind="subtitles"  label="French  Subtitles"  
        src="french-­‐st.vtt"  srclang="fr">
</video>
@shayhoweHTML Semantics
AUDIO
@shayhoweHTML Semantics
AUDIO
<audio  src="song.mp3"></audio>
<audio  src="song.mp3"  autoplay  controls  loop  
    preload="auto"></audio>
@shayhoweHTML Semantics
AUDIO FALLBACKS
<audio  controls>
    <source  src="song.oga"
        type='audio/ogg;  codecs="vorbis"'>
    <source  src="song.m4a"
        type='audio/mp4;  codecs="mp4a.40.2"'>
    <p><strong>Download  Song:</strong>
<a  href="song.oga"  download>Ogg</a>
<a  href="song.m4v"  download>ACC</a>.</p>
</audio>
@shayhoweHTML Semantics
IFRAMES
@shayhoweHTML Semantics
FALLBACK
<iframe  src="page.html"  height="200"
    width="600">
    <a  href="page.html">View  embedded  webpage.</a>
</iframe>
@shayhoweHTML Semantics
SANDBOX ATTRIBUTE
No form submission
No JavaScript
No external link targets
Restricted local access
No plug-ins
@shayhoweHTML Semantics
SANDBOX VALUES
allow-forms
Allow form submissions
allow-scripts
Allow scripts to execute
allow-same-origin
Treat content as if it is from the local server
allow-top-navigation
Allow links to open in other browsing contexts
@shayhoweHTML Semantics
SANDBOX VALUES
Boolean
<iframe  src="page.html"  sandbox>
Single Value
<iframe  src="page.html"  sandbox="allow-­‐forms">
Multiple Values
<iframe  src="page.html"
  sandbox="allow-­‐scripts  allow-­‐same-­‐origin">
@shayhoweHTML Semantics
SEAMLESS ATTRIBUTE
Links open in parent window
CSS and JS are inherited
Screen readers read content inline
<iframe  src="page.html"  seamless>
    <a  href="page.html">View  embedded  webpage.</a>
</iframe>
@shayhoweHTML Semantics
FORMS
@shayhoweHTML Semantics
COLOR
<input  type="color"  name="color">
@shayhoweHTML Semantics
DATE & TIME
date:  2012-­‐05-­‐21
datetime:  2012-­‐05-­‐24T12:00:00+01
month:  2012-­‐05
time:  12:00:00
week:  2012-­‐W21
<input  type="datetime-­‐local"
    name="event">
@shayhoweHTML Semantics
EMAIL
<input  type="email"  name="email"  multiple>
@shayhoweHTML Semantics
NUMBER
<input  type="number"  name="cost"  min="10"  
    max="100">
@shayhoweHTML Semantics
RANGE
<input  type="range"  name="rating"  min="0"  
    max="10">
@shayhoweHTML Semantics
TEL
<input  type="tel"  name="phone">
@shayhoweHTML Semantics
SEARCH
<input  type="search"  name="query">
@shayhoweHTML Semantics
URL
<input  type="url"  name="website">
@shayhoweHTML Semantics
DATALIST
<input  type="text"  name="city"  list="cities">
<datalist  id="cities">
    <option  value="Chicago">
    <option  value="Los  Angeles">
    <option  value="New  York">
</datalist>
@shayhoweHTML Semantics
AUTOMATION
Autocomplete
<form  action="foo"  autocomplete="off">
<input  type="text"  name="destination"  
    autocomplete="off">
Autofocus
<input  type="text"  name="destination"  
    autofocus>
@shayhoweHTML Semantics
ASSISTANCE
Placeholder
<input  type="text"  name="destination"  
    placeholder="Chicago">
Title
<input  type="text"  name="destination"  
    title="Please  enter  your  destination.">
@shayhoweHTML Semantics
DISABLING INPUTS
Inputs
<input  type="text"  name="destination"  disabled>
Groups of inputs
<fieldset  disabled>
    <input  type="text"  name="destination">
    <input  type="number"  name="cost">
</fieldset>
@shayhoweHTML Semantics
INCREMENTAL STEPS
Numbers
<input  type="number"  name="cost"  min="10"  
    max="100"  step="2">
<input  type="range"  name="rating"  min="0"  
    max="10"  step=".5">
Time
<input  type="date"  name="event"  
    min="2012-­‐05-­‐01"  max="2012-­‐08-­‐32"  step="2">
@shayhoweHTML Semantics
VALIDATION
Required
<input  type="text"  name="destination"  required>
Pattern
<input  type="tel"  name="phone"
    pattern="^[0-­‐9]+[-­‐  ]*[0-­‐9]+$">
Maxlength
<input  type="url"  name="website"
    maxlength="100">
@shayhoweHTML Semantics
VALIDATION
HTML
<input  type="text"  name="destination"  required>
CSS
input:required:after  {
    color:  red;
    content:  "002A";
}
input:required:valid:after  {
    color:  green;
    content:  "2713";
}
@shayhoweHTML Semantics
GET INVOLVED
@shayhoweHTML Semantics
QUESTIONS?
Thank you!
@shayhoweHTML Semantics

More Related Content

What's hot

关于 Html5 那点事
关于 Html5 那点事关于 Html5 那点事
关于 Html5 那点事Sofish Lin
 
Html5的应用与推行
Html5的应用与推行Html5的应用与推行
Html5的应用与推行Sofish Lin
 
The Users are Restless
The Users are RestlessThe Users are Restless
The Users are RestlessTerry Ryan
 
Успешные Инвест-Питчи и Публичные презентации - Часть 1
Успешные Инвест-Питчи и Публичные презентации - Часть 1Успешные Инвест-Питчи и Публичные презентации - Часть 1
Успешные Инвест-Питчи и Публичные презентации - Часть 1Gleb Kaplun
 
Html5 first look by aj.Ball
Html5 first look by aj.BallHtml5 first look by aj.Ball
Html5 first look by aj.BallSupote Phunsakul
 
Front-End Methodologies
Front-End MethodologiesFront-End Methodologies
Front-End MethodologiesArash Manteghi
 
Try Web Components
Try Web ComponentsTry Web Components
Try Web Components拓樹 谷
 
Simple Web Apps With Sinatra
Simple Web Apps With SinatraSimple Web Apps With Sinatra
Simple Web Apps With Sinatraa_l
 

What's hot (11)

关于 Html5 那点事
关于 Html5 那点事关于 Html5 那点事
关于 Html5 那点事
 
Html5的应用与推行
Html5的应用与推行Html5的应用与推行
Html5的应用与推行
 
Print this
Print thisPrint this
Print this
 
The Users are Restless
The Users are RestlessThe Users are Restless
The Users are Restless
 
Успешные Инвест-Питчи и Публичные презентации - Часть 1
Успешные Инвест-Питчи и Публичные презентации - Часть 1Успешные Инвест-Питчи и Публичные презентации - Часть 1
Успешные Инвест-Питчи и Публичные презентации - Часть 1
 
Html5 first look by aj.Ball
Html5 first look by aj.BallHtml5 first look by aj.Ball
Html5 first look by aj.Ball
 
google dork.pdf
google dork.pdfgoogle dork.pdf
google dork.pdf
 
Hardcore HTML
Hardcore HTMLHardcore HTML
Hardcore HTML
 
Front-End Methodologies
Front-End MethodologiesFront-End Methodologies
Front-End Methodologies
 
Try Web Components
Try Web ComponentsTry Web Components
Try Web Components
 
Simple Web Apps With Sinatra
Simple Web Apps With SinatraSimple Web Apps With Sinatra
Simple Web Apps With Sinatra
 

Viewers also liked

Mastering CSS3 Selectors
Mastering CSS3 SelectorsMastering CSS3 Selectors
Mastering CSS3 SelectorsRachel Andrew
 
Smacking Git Around Advanced Git Tricks
Smacking Git Around   Advanced Git TricksSmacking Git Around   Advanced Git Tricks
Smacking Git Around Advanced Git Tricksrailsconf
 
Quality Development with HTML5
Quality Development with HTML5Quality Development with HTML5
Quality Development with HTML5Shay Howe
 
Quality Development with CSS3
Quality Development with CSS3Quality Development with CSS3
Quality Development with CSS3Shay Howe
 
CSS: selectors and the box model
CSS: selectors and the box modelCSS: selectors and the box model
CSS: selectors and the box modelIdan Gazit
 
Yes, Designer, You CAN Be a Product Leader
Yes, Designer, You CAN Be a Product LeaderYes, Designer, You CAN Be a Product Leader
Yes, Designer, You CAN Be a Product LeaderShay Howe
 
An Intro to HTML & CSS
An Intro to HTML & CSSAn Intro to HTML & CSS
An Intro to HTML & CSSShay Howe
 
Git in a nutshell
Git in a nutshellGit in a nutshell
Git in a nutshellNelson Tai
 
Git and GitHub
Git and GitHubGit and GitHub
Git and GitHubJames Gray
 
Advanced Git
Advanced GitAdvanced Git
Advanced Gitsegv
 
Getting Git Right
Getting Git RightGetting Git Right
Getting Git RightSven Peters
 
Introduction to Git/Github - A beginner's guide
Introduction to Git/Github - A beginner's guideIntroduction to Git/Github - A beginner's guide
Introduction to Git/Github - A beginner's guideRohit Arora
 

Viewers also liked (20)

Mastering CSS3 Selectors
Mastering CSS3 SelectorsMastering CSS3 Selectors
Mastering CSS3 Selectors
 
Smacking Git Around Advanced Git Tricks
Smacking Git Around   Advanced Git TricksSmacking Git Around   Advanced Git Tricks
Smacking Git Around Advanced Git Tricks
 
Quality Development with HTML5
Quality Development with HTML5Quality Development with HTML5
Quality Development with HTML5
 
Git in a nutshell
Git in a nutshellGit in a nutshell
Git in a nutshell
 
The git
The gitThe git
The git
 
Quality Development with CSS3
Quality Development with CSS3Quality Development with CSS3
Quality Development with CSS3
 
CSS: selectors and the box model
CSS: selectors and the box modelCSS: selectors and the box model
CSS: selectors and the box model
 
Yes, Designer, You CAN Be a Product Leader
Yes, Designer, You CAN Be a Product LeaderYes, Designer, You CAN Be a Product Leader
Yes, Designer, You CAN Be a Product Leader
 
An Intro to HTML & CSS
An Intro to HTML & CSSAn Intro to HTML & CSS
An Intro to HTML & CSS
 
CSS Selectors
CSS SelectorsCSS Selectors
CSS Selectors
 
Git in a nutshell
Git in a nutshellGit in a nutshell
Git in a nutshell
 
Intro To Git
Intro To GitIntro To Git
Intro To Git
 
Git and GitHub
Git and GitHubGit and GitHub
Git and GitHub
 
Fundamental CSS3
Fundamental CSS3Fundamental CSS3
Fundamental CSS3
 
Advanced Git
Advanced GitAdvanced Git
Advanced Git
 
Git Tutorial 教學
Git Tutorial 教學Git Tutorial 教學
Git Tutorial 教學
 
Getting Git Right
Getting Git RightGetting Git Right
Getting Git Right
 
Intro to CSS3
Intro to CSS3Intro to CSS3
Intro to CSS3
 
Introduction to Git/Github - A beginner's guide
Introduction to Git/Github - A beginner's guideIntroduction to Git/Github - A beginner's guide
Introduction to Git/Github - A beginner's guide
 
Getting Git
Getting GitGetting Git
Getting Git
 

Similar to HTML5 Semantics

Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Terry Ryan
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateInventis Web Architects
 
Expression Engine Designer
Expression Engine   DesignerExpression Engine   Designer
Expression Engine DesignerMatias
 
Why ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersWhy ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersFortySeven Media
 
An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5Robert Nyman
 
UI Design with HTML5 & CSS3
UI Design with HTML5 & CSS3UI Design with HTML5 & CSS3
UI Design with HTML5 & CSS3Shay Howe
 
[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSSBeckhamWee
 
Presentation html5 css3 by thibaut
Presentation html5 css3 by thibautPresentation html5 css3 by thibaut
Presentation html5 css3 by thibautThibaut Baillet
 
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
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5Steven Chipman
 

Similar to HTML5 Semantics (20)

Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
 
[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design
 
Expression Engine Designer
Expression Engine   DesignerExpression Engine   Designer
Expression Engine Designer
 
Why ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for DesignersWhy ExpressionEngine is Great for Designers
Why ExpressionEngine is Great for Designers
 
[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover
 
An Introduction To HTML5
An Introduction To HTML5An Introduction To HTML5
An Introduction To HTML5
 
UI Design with HTML5 & CSS3
UI Design with HTML5 & CSS3UI Design with HTML5 & CSS3
UI Design with HTML5 & CSS3
 
[edUi] HTML5 Workshop
[edUi] HTML5 Workshop[edUi] HTML5 Workshop
[edUi] HTML5 Workshop
 
[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS
 
HTML5 Semantics
HTML5 SemanticsHTML5 Semantics
HTML5 Semantics
 
Html5
Html5Html5
Html5
 
Presentation html5 css3 by thibaut
Presentation html5 css3 by thibautPresentation html5 css3 by thibaut
Presentation html5 css3 by thibaut
 
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
 
HTML & CSS 2017
HTML & CSS 2017HTML & CSS 2017
HTML & CSS 2017
 
HTML5 Design
HTML5 DesignHTML5 Design
HTML5 Design
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
 

More from Shay Howe

Collaboration Practices
Collaboration PracticesCollaboration Practices
Collaboration PracticesShay Howe
 
Modular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS WorkshopModular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS WorkshopShay Howe
 
How Constraints Cultivate Growth
How Constraints Cultivate GrowthHow Constraints Cultivate Growth
How Constraints Cultivate GrowthShay Howe
 
Modular HTML & CSS
Modular HTML & CSSModular HTML & CSS
Modular HTML & CSSShay Howe
 
Modular HTML & CSS Workshop
Modular HTML & CSS WorkshopModular HTML & CSS Workshop
Modular HTML & CSS WorkshopShay Howe
 
Modular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopModular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopShay Howe
 
The Web Design Process: A Strategy for Success
The Web Design Process: A Strategy for SuccessThe Web Design Process: A Strategy for Success
The Web Design Process: A Strategy for SuccessShay Howe
 
Writing for the Web: The Right Strategy
Writing for the Web: The Right StrategyWriting for the Web: The Right Strategy
Writing for the Web: The Right StrategyShay Howe
 

More from Shay Howe (8)

Collaboration Practices
Collaboration PracticesCollaboration Practices
Collaboration Practices
 
Modular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS WorkshopModular HTML, CSS, & JS Workshop
Modular HTML, CSS, & JS Workshop
 
How Constraints Cultivate Growth
How Constraints Cultivate GrowthHow Constraints Cultivate Growth
How Constraints Cultivate Growth
 
Modular HTML & CSS
Modular HTML & CSSModular HTML & CSS
Modular HTML & CSS
 
Modular HTML & CSS Workshop
Modular HTML & CSS WorkshopModular HTML & CSS Workshop
Modular HTML & CSS Workshop
 
Modular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo WorkshopModular HTML & CSS Turbo Workshop
Modular HTML & CSS Turbo Workshop
 
The Web Design Process: A Strategy for Success
The Web Design Process: A Strategy for SuccessThe Web Design Process: A Strategy for Success
The Web Design Process: A Strategy for Success
 
Writing for the Web: The Right Strategy
Writing for the Web: The Right StrategyWriting for the Web: The Right Strategy
Writing for the Web: The Right Strategy
 

Recently uploaded

Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricksabhishekparmar618
 
Call In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCR
Call In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCRCall In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCR
Call In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCRdollysharma2066
 
Architecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfArchitecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfSumit Lathwal
 
Design Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William VickeryDesign Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William VickeryWilliamVickery6
 
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一Fi sss
 
group_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfgroup_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfneelspinoy
 
Pharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdfPharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdfAayushChavan5
 
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...Amil baba
 
毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree 毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree ttt fff
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,Aginakm1
 
办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一
办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一
办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一diploma 1
 
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一Fi L
 
CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10
CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10
CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10uasjlagroup
 
Call Girls Meghani Nagar 7397865700 Independent Call Girls
Call Girls Meghani Nagar 7397865700  Independent Call GirlsCall Girls Meghani Nagar 7397865700  Independent Call Girls
Call Girls Meghani Nagar 7397865700 Independent Call Girlsssuser7cb4ff
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Rndexperts
 
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...katerynaivanenko1
 
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degreeyuu sss
 
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services DubaiDubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubaikojalkojal131
 
ARt app | UX Case Study
ARt app | UX Case StudyARt app | UX Case Study
ARt app | UX Case StudySophia Viganò
 
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证nhjeo1gg
 

Recently uploaded (20)

Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricks
 
Call In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCR
Call In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCRCall In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCR
Call In girls Bhikaji Cama Place 🔝 ⇛8377877756 FULL Enjoy Delhi NCR
 
Architecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfArchitecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdf
 
Design Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William VickeryDesign Portfolio - 2024 - William Vickery
Design Portfolio - 2024 - William Vickery
 
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
(办理学位证)埃迪斯科文大学毕业证成绩单原版一比一
 
group_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdfgroup_15_empirya_p1projectIndustrial.pdf
group_15_empirya_p1projectIndustrial.pdf
 
Pharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdfPharmaceutical Packaging for the elderly.pdf
Pharmaceutical Packaging for the elderly.pdf
 
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
NO1 Famous Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi Add...
 
毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree 毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
毕业文凭制作#回国入职#diploma#degree澳洲弗林德斯大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
 
办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一
办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一
办理(USYD毕业证书)澳洲悉尼大学毕业证成绩单原版一比一
 
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
办理学位证(NUS证书)新加坡国立大学毕业证成绩单原版一比一
 
CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10
CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10
CREATING A POSITIVE SCHOOL CULTURE CHAPTER 10
 
Call Girls Meghani Nagar 7397865700 Independent Call Girls
Call Girls Meghani Nagar 7397865700  Independent Call GirlsCall Girls Meghani Nagar 7397865700  Independent Call Girls
Call Girls Meghani Nagar 7397865700 Independent Call Girls
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025
 
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
 
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
2024新版美国旧金山州立大学毕业证成绩单pdf电子版制作修改#毕业文凭制作#回国入职#diploma#degree
 
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services DubaiDubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
Dubai Calls Girl Tapes O525547819 Real Tapes Escort Services Dubai
 
ARt app | UX Case Study
ARt app | UX Case StudyARt app | UX Case Study
ARt app | UX Case Study
 
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
在线办理ohio毕业证俄亥俄大学毕业证成绩单留信学历认证
 

HTML5 Semantics