Basic HTML Structure

All HTML documents must start with a document type declaration: <!DOCTYPE html> he HTML document itself begins with <html> and ends with </html> The visible part of the HTML document is between <body> and </body> Example:

HTML Attributes All HTML elements can have attributes Attributes provide additional information about elements Attributes are always specified in the start tag Attributes usually come in name/value pairs like: name=”value” […]