SlideShare a Scribd company logo
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

PPTX
Blog backup & recovery
PPTX
Essential Plugins For Your WordPress Real Estate Blog
PPTX
WordPress for Real Estate
DOCX
Debugging wordpress
KEY
A Beginner’s Guide to Wordpress - WordCamp Toronto 2011
KEY
WordPress for Girl Geeks 2009-11-24
PDF
Know Enough to Be Dangerous
KEY
A Beginner's Guide to WordPress - WordCamp Montreal 2012
Blog backup & recovery
Essential Plugins For Your WordPress Real Estate Blog
WordPress for Real Estate
Debugging wordpress
A Beginner’s Guide to Wordpress - WordCamp Toronto 2011
WordPress for Girl Geeks 2009-11-24
Know Enough to Be Dangerous
A Beginner's Guide to WordPress - WordCamp Montreal 2012

What's hot (10)

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

Viewers also liked (7)

DOCX
trabajo de beneficios del e-marketing
PPTX
DOC
PDF
CSS Page Design
DOCX
Written treatment
PDF
Introduction to CSS
KEY
Html intro
trabajo de beneficios del e-marketing
CSS Page Design
Written treatment
Introduction to CSS
Html intro
Ad

Similar to Intro to html (20)

PDF
7 ingredients to search engine optimisation (SEO) for Joomla
PDF
HTML Notes_241202_103535 to learning frontend
PDF
HTML Notes for new begginers for HTML CSS
PDF
Web Design Basics: HTML Essentials for begginer
PPT
Html class-02
PDF
HTML practical guide for O/L exam
PDF
Twitter Bootstrap, or why being a PHP Developer is a bad idea
PPTX
HTML (Basic to Advance)
PPTX
Advance HTML
PDF
J309-14 Week One
PPTX
Session no 1 html
PDF
web technology practical file
PPT
HTML and ASP.NET
PPT
Html ppt by Fathima faculty Hasanath college for women bangalore
PDF
Browser Mechanics & CSS
DOCX
Web Designing.docx
PPT
HTML Introduction
PDF
Web Information Systems Lecture 2: HTML
PPTX
dfgg.pptx dfvdrf rfgegver dfversdv efdwsfw efdsxc
PDF
7 ingredients to search engine optimisation (SEO) for Joomla
HTML Notes_241202_103535 to learning frontend
HTML Notes for new begginers for HTML CSS
Web Design Basics: HTML Essentials for begginer
Html class-02
HTML practical guide for O/L exam
Twitter Bootstrap, or why being a PHP Developer is a bad idea
HTML (Basic to Advance)
Advance HTML
J309-14 Week One
Session no 1 html
web technology practical file
HTML and ASP.NET
Html ppt by Fathima faculty Hasanath college for women bangalore
Browser Mechanics & CSS
Web Designing.docx
HTML Introduction
Web Information Systems Lecture 2: HTML
dfgg.pptx dfvdrf rfgegver dfversdv efdwsfw efdsxc

Recently uploaded (20)

PPTX
Spectroscopy.pptx food analysis technology
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Cloud computing and distributed systems.
PDF
cuic standard and advanced reporting.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
Machine Learning_overview_presentation.pptx
PDF
Electronic commerce courselecture one. Pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Approach and Philosophy of On baking technology
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Empathic Computing: Creating Shared Understanding
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Machine learning based COVID-19 study performance prediction
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Spectroscopy.pptx food analysis technology
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Cloud computing and distributed systems.
cuic standard and advanced reporting.pdf
The AUB Centre for AI in Media Proposal.docx
Machine Learning_overview_presentation.pptx
Electronic commerce courselecture one. Pdf
Assigned Numbers - 2025 - Bluetooth® Document
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
sap open course for s4hana steps from ECC to s4
Approach and Philosophy of On baking technology
NewMind AI Weekly Chronicles - August'25-Week II
Empathic Computing: Creating Shared Understanding
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
MYSQL Presentation for SQL database connectivity
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Machine learning based COVID-19 study performance prediction
Agricultural_Statistics_at_a_Glance_2022_0.pdf

Intro to html