Introduction To HTML 2
Introduction To HTML 2
STUDY GUIDE
INTRODUCTION TO HTML
Overview
» Hypertext Markup Language (HTML) was invented by a physicist, Tim Berners-Lee, to help computers share information.
» It’s a simple, text-based computer language that tells computers how to send information over a network and render it into a form
readable by a user.
HTML Format
» An HTML element consists of an opening tag, a closing tag, and the text in between. Tags tell the computer what to do with a particular
bit of information.
Opening tags are structured like this: <xx>
Closing tags are similar, but include a forward slash: </xx>
HTML Hierarchy
» HTML tags follow a specific structure, called a hierarchy.
» Certain elements, called child elements, fit inside of other elements, called parent elements.
» Indentation helps visually distinguish child elements from their parents.
HTML Boilerplate
HTML boilerplate should be inserted at the beginning of any HTML document. It looks like this:
boilerplate
For the most important HTML tags, check out this official list maintained by the World Wide Web Consortium.