January 2019
Beginner
132 pages
3h 14m
English
Each HTML document has a specific layout starting with the <!doctype> tag. This tag is used to define the version of the HTML specification used to validate this specific document. In our case, the <!doctype html> refers to the HTML 5 specification. You may sometimes see tags such as this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
This would describe an HTML 4.01 (strict) web page that follows definitions provided at the URL provided. We will not go into using the provided definition to validate the page in this book, as it is usually not necessary to do so.
Following the <!doctype> tag is the <html> tag, which holds the actual content of the web page. Inside the <html> tag, ...
Read now
Unlock full access