What is HTML?
• HTML (HyperText Markup Language) is the standard language used to create
and design documents on the web. It provides the structure of a webpage,
allowing you to insert text, images, links, and other content. HTML5 is the latest
version, offering new features and improved functionality.
Html document structure
A basic HTML document has a standard structure, defined by a set of
tags:
1. <!DOCTYPE html>: Declares the document type and version (HTML5).
2. <html>: The root element of an HTML document.
3. <head>: Contains meta-information about the document, such as the title and links
to stylesheets.
4. <title>: Specifies the title of the document, displayed in the browser's title
bar or tab. 5. <body>: Contains the content of the document, such as text,
images, and other elements.