HTML Basics
HTML stands for the Hyper Text Markup Language, and describes the structure of web pages. HTML includes elements, also called tags. Browser do not display the HTML, but instead use them to render the content of the page. HTML tags usually come in pairs, called opening and closing tags. These are surrounded by angle tags. The end tag is written identical to the start, but with a forward slash. For example, <p> and </p>. Elements can...