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

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 

Recently uploaded (20)

Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 

HTML Structure Content Meaning Tags