Chapter03 IntroductionToHTML
Chapter03 IntroductionToHTML
Chapter03 IntroductionToHTML
Chapter 3
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
Chapter 3
What Is HTML and
1 Where Did It
Come from?
2 HTML Syntax
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
What Is HTML and Where Did It Come from?
HTML
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
HTML Syntax
Elements and Attributes
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
Semantic Markup
Advantages:
• Maintainability
• Performance
• Accessibility (http://www.w3.org/WAI )
• Search Engine Optimization
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
Structure of HTML Documents
A simple example
<!DOCTYPE html>
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
Quick Tour of HTML Elements
A document to walk through
• <a>
• <abbr>
• <br>
• <cite>
• <code>
• <em>
• <mark>
• <small>
• <span>
• <strong>
• <time>
Entity Description
Nonbreakable space
< <
> >
© ©
™ ™
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
HTML5 Semantic Structure Elements
<header>
<img src="logo.gif" alt="logo" />
<h1>Fundamentals of Web Development</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="browse.html">Browse</a></li>
</ul>
</nav>
</header>
3 4
Semantic Structure of HTML
Markup Documents
HTML5 Semantic
5 Quick Tour of
HTML Elements 6 Structure
Elements
Summary
7
Randy Connolly and Ricardo Hoar Fundamentals of Web Development - 2 nd Ed.
Summary
Key Terms