Transcription of BEGINNER’S HTML CHEAT SHEET - WebsiteSetup
{{id}} {{{paragraph}}}
BEGINNER S _ html CHEAT SHEET Main root2 Document metadata2 Sectioning root3 Content sectioning3 Text content4 Inline text semantics6 Image and multimedia8 Scripting9 Demarcating edits9 Table content9 Forms11 Interactive elements12 - Beginner s html CHEAT SHEET 1 Main root < html > .. </ html > The html < html > element represents the root (top-level element) of an html document, so it is also referred to as the root element. All other elements must be descendants of this element. Example: <!DOCTYPE html > < html lang="en"> <head>..</head> <body>..</body> </ html > Document metadata <head> .. </head> The html <head> element contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets.
The HTML Abbreviation element (<abbr>) represents an abbreviation or acronym; the optional title attribute can provide an expansion or description for the abbreviation. <br>
Domain:
Source:
Link to this page:
Please notify us if you found a problem with this document:
{{id}} {{{paragraph}}}