HTML Version HistoryVersion Date Description HTML 1.0 1989 The first public version of HTML HTML 2.0 1995 HTML version that added interactive elements including web forms HTML 3.2 1997 H
Trang 1HTML
Review
Trang 31 HTML Version History
Version Date Description
HTML 1.0 1989 The first public version of HTML
HTML 2.0 1995 HTML version that added interactive elements including web forms
HTML 3.2 1997 HTML version that provided additional support for web tables and expanded the options for interactive form elements and a scripting
language
HTML 4.01 1999 HTML version that added support for style sheets to give web designers greater control over page layout and appearance, and
provided support for multimedia elements such as audio and video
XHTML 1.0 2001 A reformulation of HTML 4.01 using the XML markup language in order to provide enforceable standards for HTML content and to
allow HTML to interact with other XML languagesXHTML 2.0 discontinued in 2009 The follow-up version to XHTML 1.1 designed to fix some of the problems inherent in HTML 4.01 syntax
HTML 5.0 2012 HTML version providing support for mobile design, semantic page elements, column layout, form validation, offline storage, and
enhanced multimediaHTML 5.2 2017 The current version of HTML 5
Trang 42 HTML Tag & Attributes
Two-sided tag: is a tag that contains some document
content General syntax for a two-sided tag:
<element attribute1 =” value1 ” >content</element>
A two-sided tag’s opening tag (<p>) and closing tag (</p>) should completely enclose its content
<p>Welcome to the HTML</p>
One-sided tag: is an empty element General syntax for a
one-sided tag
<element attribute1 =” value1 ” />
<input type =“ text ” />
Trang 53 Basic Structure of HTML
Trang 64 Document Head Elements
Trang 7Attributes of the meta element
Trang 8Meta examples
Trang 95 HTML Comments
Trang 106 Sectioning Elements (Block Level)
Trang 127 Groupings Elements (Block Level)
Trang 138 Text-Level Elements (Inline Level)
Trang 149 Embedded Elements
Trang 1510 Commonly used HTML Attributes
Trang 1611 Special Characters
Character Encoding ( &#code; ): E.g © ©
Character Entity References ( &char; ): E.g © ©
References: https://www.w3schools.com/html/html_symbols.asp
Trang 1813 Linking HTML to StyleSheet
Trang 1914 Hypertext Links (The <a> Tag)
Trang 20 From ct_about.html: ct_contact.html or /ct_contact.html
From index.html file: general/ct_contact.html or /general/ct_contact.html
From ct_about.html: /docs/imgs/image.jpg or / /docs/imgs/image.jpg
Absolute path: /docs/css/style.css
Specifying Folder Paths
Trang 21Linking within a Document
Trang 22THE END