What is HTML? HTML is a markup language for describing web documents (web pages). HTML stands for H yper T ext M arkup L anguage A markup language is a set of markup tags HTML documents are described by HTML tags Each HTML tag describes different document content HTML STRUCTURE: EXAMPLE: < !DOCTYPE html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Example Explained The <!DOCTYPE html> declaration defines this document to be HTML5 The text between <html> and </html> describes an HTML document The text between <head> and </head> provides information about the document The text be...