Learn HTML - Elements and Structure Cheatsheet - Codecademy
Learn HTML - Elements and Structure Cheatsheet - Codecademy
HTML Element
An HTML element is a piece of content in an HTML
document and uses the following syntax: opening tag + <p>Hello World!</p>
HTML Tag
The syntax for a single HTML tag is an opening angle
bracket < followed by the element name and a closing <div>
angle bracket > . Here is an example of an opening
<div> tag.
Element Content
The content of an HTML element is the information
between the opening and closing tags of an element. <h1>Codecademy is awesome! 🙂</h1>
Closing Tag
An HTML closing tag is used to denote the end of an
HTML element. The syntax for a closing tag is a left angle <body>
HTML Structure
HTML is organized into a family tree structure. HTML
elements can have parents, grandparents, siblings, <body>
</body>
...
</div>
<div>
<h1>Second section of grouped
elements</h1>
</div>
HTML Attributes
HTML attributes are values added to the opening tag of an
element to configure the element or change the <p id="my-paragraph" style="color:
element’s default behavior. In the provided example, we green;">Here’s some text for
are giving the <p> (paragraph) element a unique a paragraph that is being altered by
identifier using the id attribute and changing the color HTML attributes</p>
Unique ID Attributes
In HTML, specific and unique id attributes can be
assigned to different elements in order to differentiate <h1 id="A1">Hello World</h1>
between them.
When needed, the id value can be called upon by CSS
and JavaScript to manipulate, format, and perform
specific instructions on that element and that element
only. Valid id attributes should begin with a letter and
should only contain letters ( a-Z ), digits ( 0-9 ), hyphens
( - ), underscores ( _ ), and periods ( . ).
required, like in a postal address. The line break element Poems are a great use case.<br>
requires only an opening tag and must not have a closing Oh joy! A line break.
tag.
</ul>
</ol>
<ul>
<li>Cookies</li>
<li>Milk</li>
</ul>
</ol>
<img> Image Element
HTML image <img> elements embed images in
documents. The src attribute contains the image URL <img src="image.png">
alt Attribute
An <img> element can have alternative text via the alt
attribute. The alternative text will be displayed if an image <img src="path/to/image" alt="text
fails to render due to an incorrect URL, if the image describing image" />
format is not supported by the browser, if the image is
blocked from being displayed, or if the image has not
been received from the URL.
The text will be read aloud if screen reading software is
used and helps support visually impaired users by
providing a text descriptor for the image content on a
webpage.
video. Adding the controls attribute will display video Video not supported
<a href="http://www.codecademy.com">
</html>
Indentation
HTML code should be formatted such that the
indentation level of text increases once for each level of <div>
nesting. <h1>Heading</h1>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
</div>
<a href="#id-of-element-to-link-
to">Take me to a different part of the
page</a>
contained between the opening and closing <html> tags. <!-- I'm a comment -->
</html>
Comments
In HTML, comments can be added between an opening
<!-- and closing --> . Content inside of comments will <!-- Main site content -->
Comments can be
-->
Whitespace
Whitespace, such as line breaks, added to an HTML
document between block-level elements will generally be <p>Test paragraph</p>
spacing on the rendered HTML page. Rather, whitespace <!-- The whitespace created by this
is added for organization and easier reading of the HTML line, and above/below this line is
document itself.
ignored by the browser-->
</head>
</html>
File Path
URL paths in HTML can be absolute paths, like a full URL,
for example: https://developer.mozilla.org/en- <a
US/docs/Learn or a relative file path that links to a local href="https://developer.mozilla.org/en-
file in the same folder or on the same server, for example: US/docs/Web">The URL for this anchor
./style.css . Relative file paths begin with ./ followed element is an absolute file path.</a>