SlideShare a Scribd company logo
1 of 57
Download to read offline
HTML is Structure
Monday, April 15, 13
CSSHTML StyleStructure
WEB PAGE
Monday, April 15, 13
CSSHTML StyleStructure
WEB PAGE
Monday, April 15, 13
HTML BASICS
Monday, April 15, 13
<tagname>
content
</tagname>
Monday, April 15, 13
<h1>
Panel Calls for Broad Changes
</h1>
Monday, April 15, 13
<tagname attribute=”value”>
content
</tagname>
Monday, April 15, 13
<a href=”http://nytimes.com...”>
Panel Calls for Broad Changes
</a>
Monday, April 15, 13
<tagname attribute=”value” attribute=”value”>
content
</tagname>
Monday, April 15, 13
<a href=“http://nytimes.com...” target=“_blank”>
Panel Calls for Broad Changes
</a>
Monday, April 15, 13
<!DOCTYPE html>
<html>
</html>
Monday, April 15, 13
<!DOCTYPE html>
<html>
<head>
<title>Title of your page goes here</title>
</head>
<body>
Bulk of your content here.
</body>
</html>
Monday, April 15, 13
Zach Wise
Experience
Associate Professor
Northwestern University
Evanston, Il
2011 to present
Teach interactive design and storytelling, from basic
skills (HTML,CSS,JS, etc) to design to strategy. Teach
photojournalism and documentary film.
Senior Producer
The New York Times
New York, New York
2007 to 2012
(bad!)
Monday, April 15, 13
<h1>Zach Wise</h1>
<section>
<h2>Experience</h2>
<div>
<h3>Associate Professor</h3>
<p><a href="http://northwestern.edu">Northwestern University</a></p>
<p>Evanston, Il</p>
<p>2011 to present</p>
<ul>
<li>Teach interactive design and storytelling, from basic skills
(HTML,CSS,JS, etc) to design to strategy.</li>
<li>Teach photojournalism and documentary film.</li>
</ul>
</div>
<div>
<h3>Senior Producer</h3>
<p><a href="http://nytimes.com">The New York Times</a></p>
<p>New York, NY</p>
<p>2007 to 2012 </p>
</div>
</section>
(good!)
Monday, April 15, 13
What about color?
and size?
Monday, April 15, 13
What about color?
and size?
Rejected!
Monday, April 15, 13
HTML is:
Structure Weight Relationship
<h1>
<h2>
<h2>
<h1>
<h3>
<h3>
<h2>
</h1>
</h2>
</h2>
</h3>
</h3>
</h2>
Monday, April 15, 13
HTML is:
Structure <main headline>
<category>
<detail> <detail>
<category>
<detail> <detail>
Monday, April 15, 13
HTML is:
Structure <Zach Wise>
<Experience>
<NU> <NYTimes>
<Education>
<OU> <UNC>
Monday, April 15, 13
Monday, April 15, 13
HTML is:
Structure <main headline>
<category>
<detail> <detail>
<category>
<detail> <detail>
Monday, April 15, 13
HTML is:
Structure <h1>
<h2>
<p> <p>
<h2>
<p> <p>
Monday, April 15, 13
HTML is:
Structure <h1>
<h2>
<h3> <h3>
<h2>
<h3> <h3>
Monday, April 15, 13
HTML is:
Structure <h1>
<p>
<ul> <dl>
<h2>
<h3> <h3>
Monday, April 15, 13
HTML is:
Structure
Weight
Relationship
<h2>
<h3>
<h5>
<h6>
Monday, April 15, 13
HTML is:
Structure
Content Meaning
<h1>Headline</h1>
<p>Paragraph text</p>
<ul>Unordered list</ul>
<li>List item</li>
<blockquote>Quote</blockquote>
<em>Emphasis</em>
Monday, April 15, 13
Tomorrow is the first day of
vacation!!!!!
Monday, April 15, 13
HTML is:
Structure Make things bigger
<h3> Tomorrow is the first day of</h3>
<h1>Vacation!!!!!</h1>
(bad!)
Monday, April 15, 13
<h3>Tomorrow is the first day of</h3>
<h1>vacation!!!!!</h1>
Monday, April 15, 13
HTML is:
Structure Give Emphasis
<p> Tomorrow is the first day of <em>Vacation!!!!!</em></p>
(good!)
Monday, April 15, 13
<p>Tomorrow is the first day of <em>vacation!!!!!</em></p>
Monday, April 15, 13
<p>Tomorrow is the first day of <em>vacation!!!!!</em></p>
(good!)
Monday, April 15, 13
HTML is:
Structure
Content
Meaning
Monday, April 15, 13
HTML is:
Structure
Content
Meaning
<h3>
<h4>
<p>
Monday, April 15, 13
HTML is:
Structure
Content
Meaning
<h3>
<h4>
<p>
Monday, April 15, 13
HTML is:
Structure
Content
Meaning
<h3>
<h4>
<p>
<ul / li>
Monday, April 15, 13
(so what?)
Monday, April 15, 13
<em>because if we do it right, the
web is a way cooler place</em>
Monday, April 15, 13
Monday, April 15, 13
Basic HTML
Monday, April 15, 13
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<blockquote>This is a pull quote</blockquote>
<ul>
<li>I’m a list item within an unordered list</li>
<li>Notice the ul and li tags are properly “nested”</li>
</ul>
Monday, April 15, 13
<br /> end of line, but not the end of a paragraph
<hr /> draw a line, or “horizontal rule”
<img src=”image.jpg” /> insert a photo
Monday, April 15, 13
HTML Documents
Have 3 Sections
Monday, April 15, 13
<!DOCTYPE html>
<html>
<head>
<title>My First Web site</title>
</head>
<body>
<p>This is a great little site.</p>
</body>
</html>
Monday, April 15, 13
<!DOCTYPE html>
<html>
<head>
<title>My First Web site</title>
</head>
<body>
<p>This is a great little site.</p>
</body>
</html>
Monday, April 15, 13
<!DOCTYPE html>
<html>
<head>
<title>My First Web site</title>
</head>
<body>
<p>This is a great little site.</p>
</body>
</html>
Monday, April 15, 13
<!DOCTYPE html>
<html>
<head>
<title>My First Web site</title>
</head>
<body>
<p>This is a great little site.</p>
</body>
</html>
Monday, April 15, 13
Gotchas
Monday, April 15, 13
<b> and <i>
(bad!)
http://en.wikipedia.org/wiki/HTML_element
Monday, April 15, 13
<img src=”someimage.jpg” />
<br />
<hr />
Monday, April 15, 13
<h1>There can be only one</h1>
Monday, April 15, 13
Block-level & Inline
Monday, April 15, 13
<h1>Block-level tag</h1>
<p>Block-level tag</p>
<p>Block-level tag with some
<em>inline elements</em>mixed
<strong>in</strong>.</p>
Monday, April 15, 13
Block Inline
h1 - h6
p
div
ul
li
dl
address
blockquote
hr
a
em
img
abbr
strong
code
span
cite
q
Monday, April 15, 13
<a href=”zach.html”><h1>Zach</h1></a>
(bad!)
http://en.wikipedia.org/wiki/HTML_element
Monday, April 15, 13
<h1><a href=”zach.html”>Zach</a></h1>
(good!)
Monday, April 15, 13
<html>
<head>...</head>
<body>
<h1>HTML Rocks!</h1>
<em>and it’s everywhere!</em>
</body>
</html>
(bad!)
Monday, April 15, 13

More Related Content

What's hot

A Beginner's Guide to WordPress - WordCamp New York City 2012
A Beginner's Guide to WordPress - WordCamp New York City 2012A Beginner's Guide to WordPress - WordCamp New York City 2012
A Beginner's Guide to WordPress - WordCamp New York City 2012Kathryn Presner
 
WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...
WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...
WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...John Ford
 
Podcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs UpdatedPodcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs Updatedguest792a9d
 
Podcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs UpdatedPodcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs Updatedguest792a9d
 
A Beginner's Guide to Wordpress - WordCamp Montreal 2011
A Beginner's Guide to Wordpress - WordCamp Montreal 2011A Beginner's Guide to Wordpress - WordCamp Montreal 2011
A Beginner's Guide to Wordpress - WordCamp Montreal 2011Kathryn Presner
 
How to Jazz Up Your WordPress Site – without a lick o’ code
How to Jazz Up Your WordPress Site – without a lick o’ codeHow to Jazz Up Your WordPress Site – without a lick o’ code
How to Jazz Up Your WordPress Site – without a lick o’ codeKathryn Presner
 
WordPress for Business Sites - ConvergeSouth - October 2011
WordPress for Business Sites - ConvergeSouth - October 2011WordPress for Business Sites - ConvergeSouth - October 2011
WordPress for Business Sites - ConvergeSouth - October 2011John Ford
 
Don’t Panic: How To Troubleshoot Your WordPress Site
Don’t Panic: How To Troubleshoot Your WordPress SiteDon’t Panic: How To Troubleshoot Your WordPress Site
Don’t Panic: How To Troubleshoot Your WordPress SiteWordCamp Sydney
 
15 Essential WordPress Plugins
15 Essential WordPress Plugins15 Essential WordPress Plugins
15 Essential WordPress PluginsMykl Roventine
 

What's hot (10)

A Beginner's Guide to WordPress - WordCamp New York City 2012
A Beginner's Guide to WordPress - WordCamp New York City 2012A Beginner's Guide to WordPress - WordCamp New York City 2012
A Beginner's Guide to WordPress - WordCamp New York City 2012
 
WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...
WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...
WordPress.com の裏側 (Behind the Scenes of WordPress.com) - WordCamp Tokyo - Nov...
 
Podcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs UpdatedPodcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs Updated
 
Podcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs UpdatedPodcasting At Hhh 2.5 Hrs Updated
Podcasting At Hhh 2.5 Hrs Updated
 
A Beginner's Guide to Wordpress - WordCamp Montreal 2011
A Beginner's Guide to Wordpress - WordCamp Montreal 2011A Beginner's Guide to Wordpress - WordCamp Montreal 2011
A Beginner's Guide to Wordpress - WordCamp Montreal 2011
 
How to Jazz Up Your WordPress Site – without a lick o’ code
How to Jazz Up Your WordPress Site – without a lick o’ codeHow to Jazz Up Your WordPress Site – without a lick o’ code
How to Jazz Up Your WordPress Site – without a lick o’ code
 
WordPress for Business Sites - ConvergeSouth - October 2011
WordPress for Business Sites - ConvergeSouth - October 2011WordPress for Business Sites - ConvergeSouth - October 2011
WordPress for Business Sites - ConvergeSouth - October 2011
 
All you need is front
All you need is frontAll you need is front
All you need is front
 
Don’t Panic: How To Troubleshoot Your WordPress Site
Don’t Panic: How To Troubleshoot Your WordPress SiteDon’t Panic: How To Troubleshoot Your WordPress Site
Don’t Panic: How To Troubleshoot Your WordPress Site
 
15 Essential WordPress Plugins
15 Essential WordPress Plugins15 Essential WordPress Plugins
15 Essential WordPress Plugins
 

Viewers also liked

Viewers also liked (7)

trabajo de beneficios del e-marketing
trabajo de beneficios del e-marketingtrabajo de beneficios del e-marketing
trabajo de beneficios del e-marketing
 
Adobe
AdobeAdobe
Adobe
 
Ley 9 de 1979
Ley 9 de 1979Ley 9 de 1979
Ley 9 de 1979
 
CSS Page Design
CSS Page DesignCSS Page Design
CSS Page Design
 
Written treatment
Written treatmentWritten treatment
Written treatment
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
Html intro
Html introHtml intro
Html intro
 

Similar to HTML Structure Content Meaning Tags

7 ingredients to search engine optimisation (SEO) for Joomla
7 ingredients to search engine optimisation (SEO) for Joomla7 ingredients to search engine optimisation (SEO) for Joomla
7 ingredients to search engine optimisation (SEO) for JoomlaPeter Bui
 
HTML Notes for new begginers for HTML CSS
HTML Notes for new begginers for HTML CSSHTML Notes for new begginers for HTML CSS
HTML Notes for new begginers for HTML CSSRajChauhan226834
 
Web Design Basics: HTML Essentials for begginer
Web Design Basics: HTML Essentials for begginerWeb Design Basics: HTML Essentials for begginer
Web Design Basics: HTML Essentials for begginerRajChauhan226834
 
HTML practical guide for O/L exam
HTML practical guide for O/L examHTML practical guide for O/L exam
HTML practical guide for O/L examAnne Perera
 
Twitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad ideaTwitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad ideaJason Lotito
 
HTML (Basic to Advance)
HTML (Basic to Advance)HTML (Basic to Advance)
HTML (Basic to Advance)Coder Tech
 
J309-14 Week One
J309-14 Week OneJ309-14 Week One
J309-14 Week Onekimbui
 
web technology practical file
web technology practical fileweb technology practical file
web technology practical fileFreedomFox1
 
HTML and ASP.NET
HTML and ASP.NETHTML and ASP.NET
HTML and ASP.NETPadma Metta
 
Html ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangaloreHtml ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangalorefathima12
 
Browser Mechanics & CSS
Browser Mechanics & CSSBrowser Mechanics & CSS
Browser Mechanics & CSSLara Schenck
 
Web Information Systems Lecture 2: HTML
Web Information Systems Lecture 2: HTMLWeb Information Systems Lecture 2: HTML
Web Information Systems Lecture 2: HTMLKatrien Verbert
 

Similar to HTML Structure Content Meaning Tags (18)

7 ingredients to search engine optimisation (SEO) for Joomla
7 ingredients to search engine optimisation (SEO) for Joomla7 ingredients to search engine optimisation (SEO) for Joomla
7 ingredients to search engine optimisation (SEO) for Joomla
 
HTML Notes for new begginers for HTML CSS
HTML Notes for new begginers for HTML CSSHTML Notes for new begginers for HTML CSS
HTML Notes for new begginers for HTML CSS
 
Web Design Basics: HTML Essentials for begginer
Web Design Basics: HTML Essentials for begginerWeb Design Basics: HTML Essentials for begginer
Web Design Basics: HTML Essentials for begginer
 
Html class-02
Html class-02Html class-02
Html class-02
 
HTML practical guide for O/L exam
HTML practical guide for O/L examHTML practical guide for O/L exam
HTML practical guide for O/L exam
 
Twitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad ideaTwitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad idea
 
HTML (Basic to Advance)
HTML (Basic to Advance)HTML (Basic to Advance)
HTML (Basic to Advance)
 
Advance HTML
Advance HTMLAdvance HTML
Advance HTML
 
J309-14 Week One
J309-14 Week OneJ309-14 Week One
J309-14 Week One
 
Session no 1 html
Session no 1 htmlSession no 1 html
Session no 1 html
 
web technology practical file
web technology practical fileweb technology practical file
web technology practical file
 
HTML and ASP.NET
HTML and ASP.NETHTML and ASP.NET
HTML and ASP.NET
 
Html ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangaloreHtml ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangalore
 
Browser Mechanics & CSS
Browser Mechanics & CSSBrowser Mechanics & CSS
Browser Mechanics & CSS
 
Web Designing.docx
Web Designing.docxWeb Designing.docx
Web Designing.docx
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Web Information Systems Lecture 2: HTML
Web Information Systems Lecture 2: HTMLWeb Information Systems Lecture 2: HTML
Web Information Systems Lecture 2: HTML
 
HTML
HTMLHTML
HTML
 

Recently uploaded

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

HTML Structure Content Meaning Tags