Beginner HTML - Elements and Structure Cheatsheet - Codecademy
Beginner HTML - Elements and Structure Cheatsheet - Codecademy
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>
</ol>
<ul>
<li>Cookies</li>
<li>Milk</li>
</ul>
Note: The content inside the opening and closing tag is shown as a fallback in browsers that don’t support the element. Video not supported
</video>
</ol>
</div>
<div>
</div>
HTML Structure
HTML is organized into a family tree structure. HTML elements can have parents, grandparents, siblings, children,
grandchildren, etc. <body>
<div>
</div>
</body>
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 bracket <
followed by a forward slash / then the element name and a right angle bracket to close > . <body>
...
</body>
...
Unique ID Attributes
In HTML, specific and unique id attributes can be assigned to different elements in order to differentiate between them.
When needed, the id value can be called upon by CSS and JavaScript to manipulate, format, and perform specific <h1 id="A1">Hello World</h1>
instructions on that element and that element only. Valid id attributes should begin with a letter and should only contain
HTML Attributes
HTML attributes are values added to the opening tag of an element to configure the element or change the element’s
default behavior. In the provided example, we are giving the <p> (paragraph) element a unique identifier using the id <p id="my-paragraph" style="color: green;">Here’s some text for a paragraph that is
attribute and changing the color of the default text using the style attribute. being altered by HTML attributes</p>
</ul>
alt Attribute
An <img> element can have alternative text via the alt attribute. The alternative text will be displayed if an image fails to
render due to an incorrect URL, if the image format is not supported by the browser, if the image is blocked from being <img src="path/to/image" alt="text describing image" />
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.
Note: There can be only one <body> element in a document. <h1>Learn to code with Codecademy :)</h1>
</body>
HTML Element
An HTML element is a piece of content in an HTML document and uses the following syntax: opening tag + content + closing
tag. In the code provided: <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 angle bracket
> . Here is an example of an opening <div> tag. <div>
href determines the location the anchor element points to. <a href="http://www.codecademy.com">Visit this site</a>
<a href="http://www.codecademy.com">
</a>
<html>
<head>
</head>
</html>
Indentation
HTML code should be formatted such that the indentation level of text increases once for each level of nesting.
It is a common convention to use two or four space per level of nesting. <div>
<h1>Heading</h1>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
</div>
<html>
</html>
Comments
In HTML, comments can be added between an opening <!-- and closing --> . Content inside of comments will not be
rendered by browsers, and are usually used to describe a part of code or provide other details. <!-- Main site content -->
<!--
Comments can be
-->
Whitespace
Whitespace, such as line breaks, added to an HTML document between block-level elements will generally be ignored by
the browser and are not added to increase spacing on the rendered HTML page. Rather, whitespace is added for <p>Test paragraph</p>
organization and easier reading of the HTML document itself.
<!-- The whitespace created by this line, and above/below this line is ignored by the
browser-->
<p>Another test paragraph, this will sit right under the first paragraph, no extra
space between.</p>
element. <html>
<head>
</head>
</html>
File Path
URL paths in HTML can be absolute paths, like a full URL, for example: https://developer.mozilla.org/en-US/docs/Learn or a
relative file path that links to a local file in the same folder or on the same server, for example: ./style.css . Relative file <a href="https://developer.mozilla.org/en-US/docs/Web">The URL for this anchor element
paths begin with ./ followed by a path to the local file. ./ tells the browser to look for the file path from the current is an absolute file path.</a>
folder.
<a href="./about.html">The URL for this anchor element is a relative file path.</a>