SlideShare a Scribd company logo
Lecture 5
HTML
Boriana Koleva
Room: C54
Email: bnk@cs.nott.ac.uk
Overview
 Origins and evolution of HTML and
XHTML
 Basic Syntax
 Standard document structure
 Basic text markup
 Images
 Hypertext links
 Lists
Origins and Evolution of HTML
 Hypertext Markup Language
 Developed for the delivery of hypertext
on the WWW
 Built using SGML
 ASCII “Markup Language”
Recent Versions
 HTML 4.0 – 1997
• Introduced many new features and deprecated many
older features
 HTML 4.01 - 1999 - A cleanup of 4.0
 XHTML 1.0 - 2000
• Just 4.01 defined using XML, instead of SGML
 XHTML 1.1 – 2001
• Modularized 1.0, and drops frames
 XHTML 2.0 – development abandoned
 HTML 5.0
• Working Draft (not a W3C Recommendation yet)
• HTML and XHTML syntax
HTML versus XHTML
 HTML has lax syntax rules, leading to sloppy
and sometime ambiguous documents
 XHTML syntax is much more strict, leading
to clean and clear documents in a standard form
 Even minor syntax errors will prevent a document
labelled as XML from being rendered fully, whereas
they would be ignored in the HTML syntax
 HTML compatible with most legacy Web browsers
Editing (X)HTML
 Creating HTML documents
• Text editors (e.g. Notepad, Emacs, Crimson Editor)
• Source code editors (e.g. Notepad++, WebTide)
• Authoring tools (e.g. Microsoft Expression Web,
Adobe Dreamwaver, KompoZer)
 HTML files have .html extension
 The filename of your homepage should be
index.html
• If a browser does not request a specific file in a
directory, normal Web server response is to return
index.html
• http://www.crg.cs.nott.ac.uk/~bnk/Teaching/WPS/
Basic Syntax
 Elements are defined by tags (markers)
 Tag format:
• Opening tag: <name>
• Closing tag: </name>
 The opening tag and its closing tag together
specify a container for the content they enclose
• E.g. <p> Hello </p>
 Not all tags have content
• E.g. <hr>
Basic Syntax 2
 The container and its content together are
called an element
 If a tag has attributes, they appear between its
name and the right bracket of the opening tag
• E.g. <img src = “c10.jpg” />
 Comment form: <!-- … -->
 Browsers ignore comments, unrecognizable
tags, line breaks, multiple spaces, and tabs
 Tags are just suggestions to the browser,
even if they are recognized by the browser
HTML Document Structure
 An HTML document is composed of 3 parts:
1. a line containing HTML version information, e.g.:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
Note: <!DOCTYPE html> for HTML5
2. a declarative header section
• Delimited with the <head> tag
• The <title>tag is used to give the document a title
• normally displayed in the browser’s window title bar
3. a body containing the document's actual content
• Delimited with the <body> tag
 After document type declaration, the remainder of an
HTML document is contained by the html element
Basic HTML Document
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title> … </title>
<meta http-equiv="Content-Type"
content="text/html;charset=utf-8" >
</head>
<body>
…
</body>
</html>
Basic Text Markup
 Paragraph Elements: <p>
• Text is normally placed in paragraph elements
• The browser puts as many words of the
paragraph’s content as will fit in each line
<p>
Greetings!
</p>
• Simple HTML example
http://www.cs.nott.ac.uk/~bnk/WPS/simple.html
Basic Text Markup 2
 Line breaks: <br>
 Horizontal rules: <hr>
 Headings
• Six sizes, 1 - 6, specified with <h1> to <h6>
• 1, 2, and 3 use font sizes that are larger than the default
font size
• 4 uses the default size
• 5 and 6 use smaller font sizes
• Headings example
http://www.cs.nott.ac.uk/~bnk/WPS/headings.html
Basic Text Markup 3
 Blockquotes: <blockquote>
• To set a block of text off from the normal flow and
appearance of text
• Browsers often indent, and sometimes italicize
http://www.cs.nott.ac.uk/~bnk/WPS/blockquote.html
 Font Styles and Sizes (can be nested)
• Boldface: <b>
• Italics: <i>
• Smaller: <small>
• Larger: <big> (not supported in HTML5)
• Monospace: <tt> (not supported in HTML5)
Basic Text Markup 4
Example: The <big> sleet <big> in <big>
<i> Crete </i><br /> lies </big>
completely </big> in </big> the street
Display: The sleet in Crete
lies completely in the street
 Subscripts: <sub> Superscripts: <sup>
Example: x<sub>2</sub><sup>3</sup>
Display: x2
3
Basic Text Markup 5
 Character Entities
the only
named
character
entity
references
in HTML5
Images
 All modern web browsers can display images
inline (i.e. embedded in the text)
 GIF (Graphic Interchange Format)
• 8-bit color (256 different colors)
 JPEG (Joint Photographic Experts Group)
• 24-bit colour (16 million different colours)
 Portable Network Graphics (PNG)
• Relatively new
• Designed for transferring images on the Internet
Images 2
 Images are inserted into a document with the
<img> tag with the src attribute
 The alt attribute is required by HTML
• (in HTML5 can be omitted when textual desc. not available )
• Non-graphical browsers
• Browsers with images turned off
<img src = “logo.jpg"
alt = “University of Nottingham Logo" />
 The <img> tag has other optional attributes,
including width and height (in pixels)
http://www.cs.nott.ac.uk/~bnk/WPS/image.html
Linking on the Web
Document 1
Here is a link to document 2
Document 2
This is document 2.
Anchor
Link
(reference) Destination
Source
Hypertext Links
 Hypertext is the essence of the Web!
 A link is specified with the href (hypertext
reference) attribute of <a> (the anchor tag)
 The content of <a> is the visual link in the
document
<a href=“target.html”>This is a link</a>
 Relative addressing of targets is easier to
maintain and more portable than absolute
addressing
http://www.cs.nott.ac.uk/~bnk/WPS/link.html
Targets within Documents
 If the target is not at the beginning of the
document, the target spot must be marked
 Target labels can be defined in many different
tags with the id attribute
<h1 id = "baskets"> Baskets </h1>
 The link to an id must be preceded by a pound
sign (#)
• target is in the same document,
<a href = "#baskets"> Baskets </a>
• target is in a different document
<a href = "myAd.html#baskets”> Baskets </a>
Image Hyperlinks
 Links can include images in their content
<a href = "c210data.html“>
<img src = "smallplane.jpg"
alt = "Small picture of an airplane " >
Info on C210 </a>
Unordered Lists
 The list is the content of the <ul> tag
 List elements are the content of the <li> tag
<h3> Some Common Single-Engine Aircraft </h3>
<ul>
<li> Cessna Skyhawk </li>
<li> Beechcraft Bonanza </li>
<li> Piper Cherokee </li>
</ul>
Ordered Lists
 The list is the content of the <ol> tag
 Each item in the display is preceded by a sequence value
<h3> Cessna 210 Engine Starting Instructions </h3>
<ol>
<li> Set mixture to rich </li>
<li> Set propeller to high RPM </li>
<li> Set ignition switch to "BOTH" </li>
<li> Set auxiliary fuel pump switch to
"LOW PRIME" </li>
<li> When fuel pressure reaches 2 to 2.5
PSI, push starter button </li>
</ol>
Nested Lists
 Any type list can be nested inside any type list
 The nested list must be in a list item
<ol>
<li> Single-Engine Aircraft
<ol>
<li> Tail wheel </li>
<li> Tricycle </li>
</ol> <br>
</li>
<li> Dual-Engine Aircraft
<ol>
<li> Wing-mounted engines </li>
<li> Push-pull fuselage-mounted engines </li>
</ol>
</li>
</ol> http://www.cs.nott.ac.uk/~bnk/WPS/nested_lists.html
Definition Lists (for glossaries)
 List is the content of the <dl> tag
 Terms being defined are the content of the <dt>
tag
 The definitions themselves are the content of the
<dd> tag
<dl>
<dt> 152 </dt>
<dd> Two-place trainer </dd>
<dt> 172 </dt>
<dd> Smaller four-place airplane </dd
</dl> http://www.cs.nott.ac.uk/~bnk/WPS/definition.html
Validation
 W3C HTML Validation Service
• http://validator.w3.org/
Syntactic Differences
between HTML & XHTML
 Case sensitivity
 Closing tags
 Quoted attribute values
 Explicit attribute values
 id and name attributes
 Element nesting
Summary
 Origins and evolution of HTML and XHTML
 Basic syntax and standard document
structure
 Basic text markup
 Images
 Hypertext links
 Lists (unordered, ordered, definition)
 Validation
 HTML vs. XHTML syntax

More Related Content

PPTX
Html formatting
PDF
Introduction to html
PDF
Introduction to XHTML
PDF
JavaScript - Chapter 12 - Document Object Model
PPT
Html basics
PPTX
Web html table tags
PPT
Html Slide Part-1
PPTX
html-table
Html formatting
Introduction to html
Introduction to XHTML
JavaScript - Chapter 12 - Document Object Model
Html basics
Web html table tags
Html Slide Part-1
html-table

What's hot (20)

PPTX
Lecture 2 introduction to html
PPTX
Images and Tables in HTML
PPTX
Html coding
PPT
Introduction to html
PPTX
css.ppt
PPT
introduction to web technology
PPT
Javascript
PPT
Html presentation
PPTX
Cascading style sheets (CSS)
PPT
cascading style sheet ppt
PPTX
Web topic 18 conflict resolution in css
PPTX
How to learn HTML in 10 Days
PPT
PPT
PPTX
HTML5 audio & video
PPTX
Css Complete Notes
PPT
CSS Basics
PPTX
Learn html Basics
PPTX
Css backgrounds
PDF
Basic Html Notes
Lecture 2 introduction to html
Images and Tables in HTML
Html coding
Introduction to html
css.ppt
introduction to web technology
Javascript
Html presentation
Cascading style sheets (CSS)
cascading style sheet ppt
Web topic 18 conflict resolution in css
How to learn HTML in 10 Days
HTML5 audio & video
Css Complete Notes
CSS Basics
Learn html Basics
Css backgrounds
Basic Html Notes
Ad

Viewers also liked (20)

DOCX
HTML Web design english & sinhala mix note
PDF
Css sinhala(By Prasanga Amila-UCSC)
PDF
Html sinhala(By Prasanga Amila-UCSC)
PPTX
html5.ppt
PPT
Introduction to HTML
PPTX
Html starting
PPT
HTML & CSS
PPTX
Websockets on the JVM: Atmosphere to the rescue!
PPTX
PPTX
Html5 tutorial for beginners
PPS
PDF
C++ in sinhala
PPTX
6. таблицы и другие теги html
PDF
CSS Lessons Learned the Hard Way (Generate Conf)
PPT
Таблицы Html
PDF
Organisation and navigation
PDF
How Joomla Works
PPT
Getting Started With Php Frameworks @BCP5
HTML Web design english & sinhala mix note
Css sinhala(By Prasanga Amila-UCSC)
Html sinhala(By Prasanga Amila-UCSC)
html5.ppt
Introduction to HTML
Html starting
HTML & CSS
Websockets on the JVM: Atmosphere to the rescue!
Html5 tutorial for beginners
C++ in sinhala
6. таблицы и другие теги html
CSS Lessons Learned the Hard Way (Generate Conf)
Таблицы Html
Organisation and navigation
How Joomla Works
Getting Started With Php Frameworks @BCP5
Ad

Similar to Origins and evolution of HTML and XHTML (20)

PPTX
BITM3730Week1.pptx
PPT
Introduction to html
PPT
HTML & CSS.ppt
PPT
PPT
html and css- 23091 3154 458-5d4341a0.ppt
PPT
Intr to-html-xhtml-1233508169541646-3
PPTX
WEBSITE DEVELOPMENT,HTML is the standard markup language for creating Web pag...
PPT
Eye catching HTML BASICS tips: Learn easily
PPTX
HTML Fundamentals
PPTX
3 1-html-fundamentals-110302100520-phpapp02
PPT
Web Design-III IT.ppt
PDF
SEO Training in Noida- Skyinfotech.in
PPTX
Introduction to html course digital markerters
PPT
Unit 2 (html)
PPT
html
PPTX
Web technologies-course 02.pptx
PPT
Web Design.ppt
PDF
WT Module-1.pdf
PPTX
4. html css-java script-basics
PPTX
4. html css-java script-basics
BITM3730Week1.pptx
Introduction to html
HTML & CSS.ppt
html and css- 23091 3154 458-5d4341a0.ppt
Intr to-html-xhtml-1233508169541646-3
WEBSITE DEVELOPMENT,HTML is the standard markup language for creating Web pag...
Eye catching HTML BASICS tips: Learn easily
HTML Fundamentals
3 1-html-fundamentals-110302100520-phpapp02
Web Design-III IT.ppt
SEO Training in Noida- Skyinfotech.in
Introduction to html course digital markerters
Unit 2 (html)
html
Web technologies-course 02.pptx
Web Design.ppt
WT Module-1.pdf
4. html css-java script-basics
4. html css-java script-basics

Recently uploaded (20)

PDF
RMMM.pdf make it easy to upload and study
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Practical Manual AGRO-233 Principles and Practices of Natural Farming
PPTX
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
01-Introduction-to-Information-Management.pdf
PPTX
master seminar digital applications in india
PPTX
History, Philosophy and sociology of education (1).pptx
PDF
Complications of Minimal Access Surgery at WLH
PPTX
Cell Structure & Organelles in detailed.
PDF
Updated Idioms and Phrasal Verbs in English subject
PDF
Yogi Goddess Pres Conference Studio Updates
PPTX
UNIT III MENTAL HEALTH NURSING ASSESSMENT
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PPTX
Cell Types and Its function , kingdom of life
PDF
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
RMMM.pdf make it easy to upload and study
Final Presentation General Medicine 03-08-2024.pptx
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
Practical Manual AGRO-233 Principles and Practices of Natural Farming
UV-Visible spectroscopy..pptx UV-Visible Spectroscopy – Electronic Transition...
Chinmaya Tiranga quiz Grand Finale.pdf
A systematic review of self-coping strategies used by university students to ...
01-Introduction-to-Information-Management.pdf
master seminar digital applications in india
History, Philosophy and sociology of education (1).pptx
Complications of Minimal Access Surgery at WLH
Cell Structure & Organelles in detailed.
Updated Idioms and Phrasal Verbs in English subject
Yogi Goddess Pres Conference Studio Updates
UNIT III MENTAL HEALTH NURSING ASSESSMENT
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
Cell Types and Its function , kingdom of life
LNK 2025 (2).pdf MWEHEHEHEHEHEHEHEHEHEHE
Orientation - ARALprogram of Deped to the Parents.pptx

Origins and evolution of HTML and XHTML

  • 2. Overview  Origins and evolution of HTML and XHTML  Basic Syntax  Standard document structure  Basic text markup  Images  Hypertext links  Lists
  • 3. Origins and Evolution of HTML  Hypertext Markup Language  Developed for the delivery of hypertext on the WWW  Built using SGML  ASCII “Markup Language”
  • 4. Recent Versions  HTML 4.0 – 1997 • Introduced many new features and deprecated many older features  HTML 4.01 - 1999 - A cleanup of 4.0  XHTML 1.0 - 2000 • Just 4.01 defined using XML, instead of SGML  XHTML 1.1 – 2001 • Modularized 1.0, and drops frames  XHTML 2.0 – development abandoned  HTML 5.0 • Working Draft (not a W3C Recommendation yet) • HTML and XHTML syntax
  • 5. HTML versus XHTML  HTML has lax syntax rules, leading to sloppy and sometime ambiguous documents  XHTML syntax is much more strict, leading to clean and clear documents in a standard form  Even minor syntax errors will prevent a document labelled as XML from being rendered fully, whereas they would be ignored in the HTML syntax  HTML compatible with most legacy Web browsers
  • 6. Editing (X)HTML  Creating HTML documents • Text editors (e.g. Notepad, Emacs, Crimson Editor) • Source code editors (e.g. Notepad++, WebTide) • Authoring tools (e.g. Microsoft Expression Web, Adobe Dreamwaver, KompoZer)  HTML files have .html extension  The filename of your homepage should be index.html • If a browser does not request a specific file in a directory, normal Web server response is to return index.html • http://www.crg.cs.nott.ac.uk/~bnk/Teaching/WPS/
  • 7. Basic Syntax  Elements are defined by tags (markers)  Tag format: • Opening tag: <name> • Closing tag: </name>  The opening tag and its closing tag together specify a container for the content they enclose • E.g. <p> Hello </p>  Not all tags have content • E.g. <hr>
  • 8. Basic Syntax 2  The container and its content together are called an element  If a tag has attributes, they appear between its name and the right bracket of the opening tag • E.g. <img src = “c10.jpg” />  Comment form: <!-- … -->  Browsers ignore comments, unrecognizable tags, line breaks, multiple spaces, and tabs  Tags are just suggestions to the browser, even if they are recognized by the browser
  • 9. HTML Document Structure  An HTML document is composed of 3 parts: 1. a line containing HTML version information, e.g.: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> Note: <!DOCTYPE html> for HTML5 2. a declarative header section • Delimited with the <head> tag • The <title>tag is used to give the document a title • normally displayed in the browser’s window title bar 3. a body containing the document's actual content • Delimited with the <body> tag  After document type declaration, the remainder of an HTML document is contained by the html element
  • 10. Basic HTML Document <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> … </title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" > </head> <body> … </body> </html>
  • 11. Basic Text Markup  Paragraph Elements: <p> • Text is normally placed in paragraph elements • The browser puts as many words of the paragraph’s content as will fit in each line <p> Greetings! </p> • Simple HTML example http://www.cs.nott.ac.uk/~bnk/WPS/simple.html
  • 12. Basic Text Markup 2  Line breaks: <br>  Horizontal rules: <hr>  Headings • Six sizes, 1 - 6, specified with <h1> to <h6> • 1, 2, and 3 use font sizes that are larger than the default font size • 4 uses the default size • 5 and 6 use smaller font sizes • Headings example http://www.cs.nott.ac.uk/~bnk/WPS/headings.html
  • 13. Basic Text Markup 3  Blockquotes: <blockquote> • To set a block of text off from the normal flow and appearance of text • Browsers often indent, and sometimes italicize http://www.cs.nott.ac.uk/~bnk/WPS/blockquote.html  Font Styles and Sizes (can be nested) • Boldface: <b> • Italics: <i> • Smaller: <small> • Larger: <big> (not supported in HTML5) • Monospace: <tt> (not supported in HTML5)
  • 14. Basic Text Markup 4 Example: The <big> sleet <big> in <big> <i> Crete </i><br /> lies </big> completely </big> in </big> the street Display: The sleet in Crete lies completely in the street  Subscripts: <sub> Superscripts: <sup> Example: x<sub>2</sub><sup>3</sup> Display: x2 3
  • 15. Basic Text Markup 5  Character Entities the only named character entity references in HTML5
  • 16. Images  All modern web browsers can display images inline (i.e. embedded in the text)  GIF (Graphic Interchange Format) • 8-bit color (256 different colors)  JPEG (Joint Photographic Experts Group) • 24-bit colour (16 million different colours)  Portable Network Graphics (PNG) • Relatively new • Designed for transferring images on the Internet
  • 17. Images 2  Images are inserted into a document with the <img> tag with the src attribute  The alt attribute is required by HTML • (in HTML5 can be omitted when textual desc. not available ) • Non-graphical browsers • Browsers with images turned off <img src = “logo.jpg" alt = “University of Nottingham Logo" />  The <img> tag has other optional attributes, including width and height (in pixels) http://www.cs.nott.ac.uk/~bnk/WPS/image.html
  • 18. Linking on the Web Document 1 Here is a link to document 2 Document 2 This is document 2. Anchor Link (reference) Destination Source
  • 19. Hypertext Links  Hypertext is the essence of the Web!  A link is specified with the href (hypertext reference) attribute of <a> (the anchor tag)  The content of <a> is the visual link in the document <a href=“target.html”>This is a link</a>  Relative addressing of targets is easier to maintain and more portable than absolute addressing http://www.cs.nott.ac.uk/~bnk/WPS/link.html
  • 20. Targets within Documents  If the target is not at the beginning of the document, the target spot must be marked  Target labels can be defined in many different tags with the id attribute <h1 id = "baskets"> Baskets </h1>  The link to an id must be preceded by a pound sign (#) • target is in the same document, <a href = "#baskets"> Baskets </a> • target is in a different document <a href = "myAd.html#baskets”> Baskets </a>
  • 21. Image Hyperlinks  Links can include images in their content <a href = "c210data.html“> <img src = "smallplane.jpg" alt = "Small picture of an airplane " > Info on C210 </a>
  • 22. Unordered Lists  The list is the content of the <ul> tag  List elements are the content of the <li> tag <h3> Some Common Single-Engine Aircraft </h3> <ul> <li> Cessna Skyhawk </li> <li> Beechcraft Bonanza </li> <li> Piper Cherokee </li> </ul>
  • 23. Ordered Lists  The list is the content of the <ol> tag  Each item in the display is preceded by a sequence value <h3> Cessna 210 Engine Starting Instructions </h3> <ol> <li> Set mixture to rich </li> <li> Set propeller to high RPM </li> <li> Set ignition switch to "BOTH" </li> <li> Set auxiliary fuel pump switch to "LOW PRIME" </li> <li> When fuel pressure reaches 2 to 2.5 PSI, push starter button </li> </ol>
  • 24. Nested Lists  Any type list can be nested inside any type list  The nested list must be in a list item <ol> <li> Single-Engine Aircraft <ol> <li> Tail wheel </li> <li> Tricycle </li> </ol> <br> </li> <li> Dual-Engine Aircraft <ol> <li> Wing-mounted engines </li> <li> Push-pull fuselage-mounted engines </li> </ol> </li> </ol> http://www.cs.nott.ac.uk/~bnk/WPS/nested_lists.html
  • 25. Definition Lists (for glossaries)  List is the content of the <dl> tag  Terms being defined are the content of the <dt> tag  The definitions themselves are the content of the <dd> tag <dl> <dt> 152 </dt> <dd> Two-place trainer </dd> <dt> 172 </dt> <dd> Smaller four-place airplane </dd </dl> http://www.cs.nott.ac.uk/~bnk/WPS/definition.html
  • 26. Validation  W3C HTML Validation Service • http://validator.w3.org/
  • 27. Syntactic Differences between HTML & XHTML  Case sensitivity  Closing tags  Quoted attribute values  Explicit attribute values  id and name attributes  Element nesting
  • 28. Summary  Origins and evolution of HTML and XHTML  Basic syntax and standard document structure  Basic text markup  Images  Hypertext links  Lists (unordered, ordered, definition)  Validation  HTML vs. XHTML syntax