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 Intro to html

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 Intro to html (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

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
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
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
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
 
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
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
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
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
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
 
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
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
+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...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

Intro to html