SlideShare a Scribd company logo
Semantic HTML 5
Terry Ryan | Developer Evangelist
Twitter: @tpryan
Who are
 you?
OVERVIEW
Semantic HTML
       means
   your markup
     describes
    it’s content
without presenting
          it
Definition
• HTML where specific elements are used
• HTML where elements are not misused
• HTML with no presentation information
Semantic HTML is a
• Not Boolean
• Not always objective
• A continuum Text
Example
Unsemantic                                         Semantic
                                                   <body>
<body background="css/bg.png">
                                                      <div id="header">
<font face="Calibri”><center>
                                                          <h1>The Awesome Blog of Awesome</
<table width="800" bgcolor="#FFFFFF" border="10"
                                                          h1>
bordercolor="#FFFFFF">
<tr><td>
<table width="100%" bgcolor="#f0f0f0"
                                              Text
                                               Text
                                                Text
                                                          <p class="tagline">
                                                          Awesome is a State of Mind
                                                          </p>
border="0“>
                                                      </div>
    <tr>
        <td><h1>
        <font face="Palatino Linotype">The
        Awesome Blog of Awesome</font>
        </h1></td>
    </tr>
    <tr>
        <td align="right"><p>
        <i>Awesome is a State of Mind</i>
        </p></td>
    </tr>
</table>
HTML5 ?

           What does
          this have to
            do with
            HTML5?
HTML5 adds more
 <body>
<header>
     <h1>The Awesome Blog of Awesome</h1>
     <p>Awesome is a State of Mind</p>
</header>
<nav>

<ul>
     <li><a href="">Home</a></li>
     <li><a href="">Blog</a></li>
     <li><a href="">About</a></li>
     <li><a href="">Contact</a></li>
  </ul>
</nav>
Semantic HTML5
HTML5
XHTML
ELEMENTS
Semantic HTML5
Head
Header
Previously
<div id="header">
  <h1>The Awesome Blog of Awesome</h1>
  <p class="tagline">Awesome is a State of Mind</p>
</div>
                                 Text
                                  Text
                                   Text

HTML 5
<header>
  <hgroup>
     <h1>The Awesome Blog of Awesome</h1>
     <h2>Awesome is a State of Mind</h2>
  </hgroup>
</header>
<hgroup> ?


             What’s the
             <hgroup>
             all about?
Hgroup
<hgroup>

 <h1></h1>

 <h2></h2>
</hgroup>

It’s for grouping related headers, that don’t spawn their
own node in the outline
<hgroup> ?


             <huh>?
Effect of hgroup
Without                              With
H1 – Awesome Blog of Awesome         H1 – Awesome Blog of Awesome

 H2 - Awesome is a State of Mind      H2 - Recent Posts

 H2 - Recent Posts
                                   TextH3 I Made a Post Thingie
                                    Text
                                     Text
  H3 I Made a Post Thingie              H3 My Thoughts are made manifest

  H3 My Thoughts are made manifest
<hgroup> ?


             Still with the
                <huh>?
Outlines
• Outlines seem really important to the
  people who push semantic HTML 5

• Are they really important?
 • Today: No
 • Tomorrow: Who knows?
• But this is a semantically correct way of
  reducing classes and extraneous divs
Semantic HTML5
Foot
Footer
Previously
<div id="footer”>

 <p>Copyright 2011 - Terry Ryan</p>
</div>
                        Text
                         Text
                          Text

HTML 5
<footer>
  
 <p>Copyright 2011 - Terry Ryan</p>
</footer>
Semantic HTML5
Nav
Nav
Previously                            HTML 5
<div id="nav">                         <nav>
 <ul>                                  <ul>
  <li><a href="">Home</a></li>           <li><a   href="">Home</a></li>
  <li><a href="">Blog</a></li>           <li><a   href="">Blog</a></li>
  <li><a href="">About</a></li>     Text
                                     Text
                                      Text
                                         <li><a   href="">About</a></li>
  <li><a href="">Contact</a></li>        <li><a   href="">Contact</a></li>
 </ul>                                  </ul>
</div>                                 </nav>
Semantic HTML5
Artic
Nav
Previously                                       HTML 5

<div class="post”>                               <article>
<div class="postheader">                         <header>
 <h3><a href="">I Scream My Thoughts</a></h3>     <h1><a href="">I Scream My Thoughts</a></h1>
 <p class="date">August 10, 2011</p>
</div>
                                            Text
                                             Text
                                              Text
                                                  <time>August 10, 2011</time>
                                                 </header>
<p>You probably haven't heard of them duis</p>   <p>You probably haven't heard of them duis </p>
</div>                                           </article>
Article
PREVIOUSLY
<div class="post”>
<div class="postheader">
 <h3><a href="">I Scream My Thoughts</a></h3>
 <p class="date">August 10, 2011</p>
</div>
                                Text
                                 Text
<p>You probably haven't heard of them duis</p>
                                  Text
</div>


HTML5
<article>
<header>
 <h1><a href="">I Scream My Thoughts</a></h1>
 <time>August 10, 2011</time>
</header>
<p>You probably haven't heard of them duis </p>
</article>
a
  piece of
content that
    can
Section
          There’s also
            this thing
              called
          “<section>”
            how does
           that work?
An <article>
 is a piece
 of stand-
   alone
Blog Post
Comment
A <section>
    is a
 collection
 of related
 pieces of
Related Entries
<articles>
can contain
<sections>
Semantic HTML5
Artic
le
Artic
le




Secti
on
Secti
on
Secti
on
<sections>
can contain
 <articles>
<articles>
can contain
   other
 <articles>
Artic
le




Secti
on
Secti
on
Secti
on
Artic
le




Secti
on
Secti
on
Secti
on
Articl
e
Articl
e
Semantic HTML5
Conte
Content
Previously                HTML 5
<div class=”content”>     <div class=”content”>
<div class="post”>        <article>
...                       ...
</div>                    </article>
<div class="post”>
...
                        Text
                          <article>
                         Text
                          Text
                          ...
</div>                    </article>
<div class="post”>        <article>
...                       ...
</div>                    <article>
</div>                    </div>
Also correct
Previously                HTML 5
<div class=”content”>     <section class=”content”>
<div class="post”>        <article>
...                       ...
</div>                    </article>
<div class="post”>
...
                        Text
                          <article>
                         Text
                          Text
                          ...
</div>                    </article>
<div class="post”>        <article>
...                       ...
</div>                    <article>
</div>                    </section>
Umm
      That’s great, but
      frankly not that
         much of a
         difference.


        How is this
         better?
Benefit 1
Before                HTML 5
 </div>                 </div>
</div>                  </article>
</div>              Text
                       </section>
                     Text
                      Text
<div id=“footer”>      <footer>
</div>                 </footer>
</body>                </body>
Benefit 2
 Less monkeying with content hierarchies
Archi
Main           Post
       ve
Archi
Main                   Post
           ve




   Artic       Artic      Artic
   le          le         le
Archi
Main                   Post
           ve




   Artic       Artic      Artic
   le          le         le
Archi
Main                              Post
           ve
                       article header h1




   Artic       Artic                       Artic
   le          le                          le
Benefit 3
 No longer bound to one header or one nav
 can have multiple.
New
 elements
work across
  modern
 browsers
What’s
  your
definition
   of
Modern?
Use the
HTML 5 Shiv
  http://code.google.com/p/html5shiv/
ATTRIBUTES
Data
<p data-firstname=“Terry” data-lastname=“Ryan”>Terry Ryan</p>


Add “data-” to anything to make your content contain
 data

Uses?
   •Scritping
   •Microformats
   •jQuery Mobile
   •Perhaps future Search Engine hints.
These next
things aren’t
  semantic,
 just kinda
contenteditable
<p contenteditable="true” class="comment">Comment</p>

Allows any text to be user editable, not just input and
  textareas.

Uses?
   •Better CMS systems
   •Comment previews
spellcheck
<p contenteditable="true" spellcheck="spellcheck" class="comment">Comment</p>


Allows user editable field to trigger the browser’s spellcheck
  interface

Uses?
   •No one spellchecks anything they post on the web
   •But you will have the moral high ground to point out on your site they
     could have.
FORMS
elements
HTML5
 includes
  lots of
new <input>
They aren’t
supported
 on every
 browser
All browsers
 default to
  showing
 unknown
input types
Search
<input type=“search” name=“search” />

Support is spotty

Browser vendors tend to round, add
 magnifying glass, etc.




                                        Chart from - http://wufoo.com/html
Email
<input type=“email” name=“email” />

Provides validation

Provides email keyboard on iOS
  devices.




                                      Chart from - http://wufoo.com/html
URL
<input type=“url” name=“url” />

Provides validation

Provides url keyboard on iOS
devices.




                                  Chart from - http://wufoo.com/html
Number
<input type=“number” name=“cost” />


Provides keypad on iOS and Android
devices.
Provides a stepper on desktops
Takes attributes:
  Min/Max
  Step




                                      Chart from - http://wufoo.com/html
Tel
<input type=“tel” name=“cell” />

Provides keypad on iOS and
  Android devices.




                                   Chart from - http://wufoo.com/html
Not well
supported,
 but have
 potential
Range
<input type=“range” name=“volume” />

Provides a set of values
The slider allows you to pick
 one
Not terribly precise

Takes attributes:
  Min/Max
  Step
                                       Chart from - http://wufoo.com/html
Date
<input type=“date” name=“dob” />

Provides validation
On Opera
   Displays a data picker
On Safari/Chrome
   Displays ticker
IE
   Dashes your hopes and
    dreams the way only IE
    can                            Chart from - http://wufoo.com/html
FORMS
attributes
Output
<output />

Semantically correct placeholder for calculated values.

Can also be used a label for input type=“slider”




                                  Chart from - http://wufoo.com/html
Meter
<meter min=“0” max=“20” value=“12”>12cm</meter>

Basically a Bar Chart of results




                                      Chart from - http://wufoo.com/html
Progress
<progress min=“100” value=“20”>20%</
progress>

Could be used to indicate progress
through a multistep form

Could be programmatically changed to
indicate progress of program




                                       Chart from - http://wufoo.com/html
PITFALLS
Remember
 10 Years
   ago?
On Tableless designs
                                        Don’t use tables for
                                      layout, use CSS.

                                      Tables are for tabular
                     Zeldman
                                      data.

                                      They are just one of the
                                      tools in your toolkit.
  Holzschlag



                               Shea
Icons by:
http://www.ngenworks.com/
What people heard
                                      Don’t use tables


                                      Tables are for
                     Zeldman



                                      tools.

  Holzschlag



                               Shea
Icons by:
http://www.ngenworks.com/
I’m not saying
            Don’t use div’s when
            there are semantic
            elements that make
            sense.
            Div’s are still good for
            denoting things that
            have no semantic
            equivalent
I’m not saying
            Don’t use div’s when
            there are semantic
            elements that make
            sense.
            Div’s are still good for
            denoting things that
            have no semantic
            equivalent
<article>
   vs.
<section>
<nav>
  vs.
<menu>
A lot of this
 stuff is in
    Flux
You are
not required
to do any of
 what I just
CONCLUSIONS
Can you use
    it?
On desktops
The most
 common
 browsers
 have crappy
 HTML 5
 support




Source: https://netaverages.adobe.com
Actually, not
 so much
 anymore




Source: https://netaverages.adobe.com
New Elements
• Supported on most browsers
• If they are not supported, can be enabled
  using the HTML 5 Shiv
New Attributes
• Supported on most browsers
• If they are not supported, they have no
  impact.
New Form Inputs
• Support wildly varies
• If they are not supported, they have no
  impact.
New Form Elements
• Support wildly varies
• Mimic things that have been provided by
  JavaScript for years
On mobile
Semantic HTML5
Big
 Question:
Why use this
  stuff??
Used to be about the “Blind
        Billionaire
It’s Also about the Annoyed
           Reader
And
increase the
understanda
bility of your
For Future Reference
•   HTML 5 General

    •   http://www.diveintohtml5.net

    •   http://html5doctor.com

•   HTML5 Semantics

    •   http://www.diveintohtml5.net/semantics.html

•   HTML 5 Forms

    •   http://wufoo.com/html5

    •   http://www.diveintohtml5.net/forms.html

•   HTML Status

    •   http://caniuse.com
Follow up?
• Preso will be up at:
  - http://slideshare.net/tpryan
• Feel free to contact me
  - terry.ryan@adobe.com
                      Text
  - http://terrenceryan.com
  - Twitter: @tpryan
  - github: tpryan

More Related Content

What's hot (20)

PDF
Intro to Web Development
Frank Wu
 
PPTX
Web development basics
Kalluri Vinay Reddy
 
PDF
HTML5 workshop, part 1
Robert Nyman
 
PPTX
Basic HTML
sunmitraeducation
 
PPTX
Meta tag creation
AniketTiwari26
 
PDF
Joomla Technical SEO
Webshop and websites by: Webcreatives
 
PPTX
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
Carl Heaton
 
PPTX
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
Estelle Weyl
 
KEY
Deliverance talk at plone meetup
Jazkarta, Inc.
 
PPTX
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
PPTX
Html5 structure tags
SEO SKills
 
KEY
Fronttechnieken met HTML5 en de Slice-template
Inventis Web Architects
 
PDF
Using HTML5 sensibly
Christian Heilmann
 
PPTX
Day of code
Evan Farr
 
PDF
Multimedia on the web - HTML5 video and audio
Christian Heilmann
 
PPTX
HTML all tags .........its to much helpful for beginners
Nimrakhan89
 
PDF
How I learned to stop worrying and love the .htaccess file
Roxana Stingu
 
PPT
WordCamp Detroit 2010 Wordpress Theme Hacks
John Pratt
 
PDF
Pt3 Organic SEO Workshop for Wedding Pros
Christie Osborne
 
Intro to Web Development
Frank Wu
 
Web development basics
Kalluri Vinay Reddy
 
HTML5 workshop, part 1
Robert Nyman
 
Basic HTML
sunmitraeducation
 
Meta tag creation
AniketTiwari26
 
What is HTML? How do we Write it? Check out this Quick Guide from Web Courses...
Carl Heaton
 
iPhone Web Applications: HTML5, CSS3 & dev tips for iPhone development
Estelle Weyl
 
Deliverance talk at plone meetup
Jazkarta, Inc.
 
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
Html5 structure tags
SEO SKills
 
Fronttechnieken met HTML5 en de Slice-template
Inventis Web Architects
 
Using HTML5 sensibly
Christian Heilmann
 
Day of code
Evan Farr
 
Multimedia on the web - HTML5 video and audio
Christian Heilmann
 
HTML all tags .........its to much helpful for beginners
Nimrakhan89
 
How I learned to stop worrying and love the .htaccess file
Roxana Stingu
 
WordCamp Detroit 2010 Wordpress Theme Hacks
John Pratt
 
Pt3 Organic SEO Workshop for Wedding Pros
Christie Osborne
 

Viewers also liked (16)

ODP
HTML5 and Semantic Web
Jeremiah Brusola
 
PDF
Introduction to HTML5 and CSS3
Nivedhitha Venugopal
 
KEY
Design trends - from html tables to semantic html5
Kevin Bruce
 
PPTX
Créer son 1er site web
Philippe Brandao
 
PPTX
Html5 structure & semantic
Muktadiur Rahman
 
PDF
MySQL Cheat Sheet
Chen Dominique
 
PDF
Atelier #2 initiation à css
Les-Tilleuls.coop
 
PDF
Catalogue Idwatt 2016
SOREA
 
PDF
Html de base
krymo
 
PPT
Présentation html5
Kénium
 
PDF
Les base du Html5
Erwan Tanguy
 
PDF
alphorm.com - Formation HTML5, CSS 3 et JavaScript (70-480)
Alphorm
 
PDF
Intégration Web HTML 5 & CSS 3
Stephane PERES
 
KEY
HTML5 - Sémantique, structure et nouveaux éléments
Rémy Savard
 
PPTX
Installation et configuration wordpress
Chi Nacim
 
PDF
HTML5 / CSS3 : Mythes et realite
Raphaël Goetter
 
HTML5 and Semantic Web
Jeremiah Brusola
 
Introduction to HTML5 and CSS3
Nivedhitha Venugopal
 
Design trends - from html tables to semantic html5
Kevin Bruce
 
Créer son 1er site web
Philippe Brandao
 
Html5 structure & semantic
Muktadiur Rahman
 
MySQL Cheat Sheet
Chen Dominique
 
Atelier #2 initiation à css
Les-Tilleuls.coop
 
Catalogue Idwatt 2016
SOREA
 
Html de base
krymo
 
Présentation html5
Kénium
 
Les base du Html5
Erwan Tanguy
 
alphorm.com - Formation HTML5, CSS 3 et JavaScript (70-480)
Alphorm
 
Intégration Web HTML 5 & CSS 3
Stephane PERES
 
HTML5 - Sémantique, structure et nouveaux éléments
Rémy Savard
 
Installation et configuration wordpress
Chi Nacim
 
HTML5 / CSS3 : Mythes et realite
Raphaël Goetter
 
Ad

Similar to Semantic HTML5 (20)

PPTX
Introduction to HTML5
Terry Ryan
 
KEY
Class1slides
Alexis Goldstein
 
KEY
Html5, a gentle introduction
Diego Scataglini
 
PDF
Punch it Up with HTML and CSS
mtlgirlgeeks
 
PPTX
Castro Chapter 3
Jeff Byrnes
 
PPT
Html 4.0
waynet20
 
PPTX
Web technologies: Lesson 2
nhepner
 
PDF
Semantic chop
Pascal Rettig
 
PDF
HTML Lecture Part 1 of 2
Sharon Wasden
 
PPTX
Html coding
Briana VanBuskirk
 
KEY
Html 5, a gentle introduction
Diego Scataglini
 
PDF
A Primer on HTML 5 - By Nick Armstrong
Nick Armstrong
 
PPTX
3 1-html-fundamentals-110302100520-phpapp02
Aditya Varma
 
PPTX
HTML Fundamentals
BG Java EE Course
 
PPT
Introduction to HTML
Abzetdin Adamov
 
PPTX
Web Site Designing - Basic
Sanduni Palliyaguru
 
PDF
HTML_Training_101
John Robey
 
PDF
Slides 2 - HTML
Massimo Callisto
 
PPTX
HTML Bootcamp
MayeCreate Design
 
PDF
Intro to HTML 5 / CSS 3
Tadpole Collective
 
Introduction to HTML5
Terry Ryan
 
Class1slides
Alexis Goldstein
 
Html5, a gentle introduction
Diego Scataglini
 
Punch it Up with HTML and CSS
mtlgirlgeeks
 
Castro Chapter 3
Jeff Byrnes
 
Html 4.0
waynet20
 
Web technologies: Lesson 2
nhepner
 
Semantic chop
Pascal Rettig
 
HTML Lecture Part 1 of 2
Sharon Wasden
 
Html coding
Briana VanBuskirk
 
Html 5, a gentle introduction
Diego Scataglini
 
A Primer on HTML 5 - By Nick Armstrong
Nick Armstrong
 
3 1-html-fundamentals-110302100520-phpapp02
Aditya Varma
 
HTML Fundamentals
BG Java EE Course
 
Introduction to HTML
Abzetdin Adamov
 
Web Site Designing - Basic
Sanduni Palliyaguru
 
HTML_Training_101
John Robey
 
Slides 2 - HTML
Massimo Callisto
 
HTML Bootcamp
MayeCreate Design
 
Intro to HTML 5 / CSS 3
Tadpole Collective
 
Ad

More from Terry Ryan (20)

PPT
Making the Mobile Web Work
Terry Ryan
 
KEY
HTML Design for Devices
Terry Ryan
 
KEY
The Future of HTML5 Motion Design
Terry Ryan
 
KEY
Adobe and Modern Web Development
Terry Ryan
 
KEY
The Future of HTML Motion Design
Terry Ryan
 
KEY
Skip the IDE with PhoneGap Build
Terry Ryan
 
KEY
D2WC Keynote
Terry Ryan
 
PPTX
WebDU Keynote
Terry Ryan
 
PPTX
Beautiful PhoneGap Apps
Terry Ryan
 
PPTX
The Future of HTML5 Motion Design
Terry Ryan
 
PPTX
Adobe & HTML5
Terry Ryan
 
PPTX
Mobile Apps with PhoneGap and jQuery Mobile
Terry Ryan
 
PPTX
Design for Developers
Terry Ryan
 
PDF
cf.Objective ANZ Keynote
Terry Ryan
 
POTX
Flex Mobile Skinning Workshop
Terry Ryan
 
PPTX
HTML5 Semantic Web
Terry Ryan
 
PPTX
Intro to Coldfusion
Terry Ryan
 
PDF
Driving Technical Change
Terry Ryan
 
PPTX
Mobile Apps with ColdFusion
Terry Ryan
 
PPTX
Developing for Xoom with Flash and AIR
Terry Ryan
 
Making the Mobile Web Work
Terry Ryan
 
HTML Design for Devices
Terry Ryan
 
The Future of HTML5 Motion Design
Terry Ryan
 
Adobe and Modern Web Development
Terry Ryan
 
The Future of HTML Motion Design
Terry Ryan
 
Skip the IDE with PhoneGap Build
Terry Ryan
 
D2WC Keynote
Terry Ryan
 
WebDU Keynote
Terry Ryan
 
Beautiful PhoneGap Apps
Terry Ryan
 
The Future of HTML5 Motion Design
Terry Ryan
 
Adobe & HTML5
Terry Ryan
 
Mobile Apps with PhoneGap and jQuery Mobile
Terry Ryan
 
Design for Developers
Terry Ryan
 
cf.Objective ANZ Keynote
Terry Ryan
 
Flex Mobile Skinning Workshop
Terry Ryan
 
HTML5 Semantic Web
Terry Ryan
 
Intro to Coldfusion
Terry Ryan
 
Driving Technical Change
Terry Ryan
 
Mobile Apps with ColdFusion
Terry Ryan
 
Developing for Xoom with Flash and AIR
Terry Ryan
 

Recently uploaded (20)

PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
July Patch Tuesday
Ivanti
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Biography of Daniel Podor.pdf
Daniel Podor
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 

Semantic HTML5

Editor's Notes