HTML Tags
<tagname>content</tagname>
The <!DOCTYPE> Declaration
<!doctype html>
The <!DOCTYPE> declaration helps the browser to display a web page correctly.
There are different document types on the web.
To display a document correctly, the browser must know both type and version.
HTML Documents
All HTML documents must start with a type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.
HTML Headings
HTML headings are defined with the <h1> to <h6> tags:
HTML Paragraphs
HTML paragraphs are defined with the <p> tag:
HTML Links
<a href="http://www.w3schools.com">This is a link</a>
HTML Images
<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
The lang Attribute
<html lang="en-US">