0% found this document useful (0 votes)
5 views13 pages

HTML Cheat Sheet

This document is a beginner's HTML cheat sheet that outlines the structure and elements of HTML documents, including the main root, document metadata, content sectioning, text content, and forms. It provides examples of various HTML elements such as <html>, <head>, <body>, <header>, <footer>, <article>, <section>, and others, along with their purposes and usage. Additionally, it covers multimedia elements, scripting, and interactive elements to help users understand how to create and structure web pages effectively.

Uploaded by

liviwembebe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
0% found this document useful (0 votes)
5 views13 pages

HTML Cheat Sheet

This document is a beginner's HTML cheat sheet that outlines the structure and elements of HTML documents, including the main root, document metadata, content sectioning, text content, and forms. It provides examples of various HTML elements such as <html>, <head>, <body>, <header>, <footer>, <article>, <section>, and others, along with their purposes and usage. Additionally, it covers multimedia elements, scripting, and interactive elements to help users understand how to create and structure web pages effectively.

Uploaded by

liviwembebe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF or read online on Scribd
You are on page 1/ 13
BEGINNER'S: HTML CHEAT SHEET WU WebsiteSetupMain root Document metadata Sectioning root Content sectioning Text content Inline text semantics Image and multimedia Scripting Demarcating edits Table content Forms Interactive elements © © CePA RWWNN a 12Main root .. The HTML element represents the root (top-level element) of an HTML document, so it is also referred to as the root element. Alll other elements must be descendants of this element. Example: . . . . Document metadata .. ‘The HTML element contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets. The HTML External Resource Link element () specifies relationships between the current document and an external resource. This element is most commonly used to link to stylesheets, but is also used to establish site icons (both "favicon" style icons and icons for the home screen and apps on mobile devices) among other things. The HTML clement represents metadata that cannot be represented by other HTML meta-related elements, like , ,

Sectioning root

...

The HTML

Element represents the content of an HTML document. There can be only one element in a document. Example: Document title

This is a paragraph

Content sectioning
..
The HTML
element indicates that the enclosed HTML provides contact information for a person or people, or for an organization.
..
‘The HTML
element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). ‘The HTML