Learn HTML - Elements and Structure Cheatsheet - Codecademy
Learn HTML - Elements and Structure Cheatsheet - Codecademy
HTML
HTML (HyperText Markup Language) is used to give
content to a web page and instructs web browsers on
how to structure that content.
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>
<ul>
<li>Cookies</li>
<li>Milk</li>
</ul>
HTML Structure
HTML is organized into a family tree structure. HTML
elements can have parents, grandparents, siblings, <body>
children, grandchildren, etc. <div>
<h1>It's div's child and body's
grandchild</h1>
<h2>It's h1's sibling</h2>
</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 <body>
bracket < followed by a forward slash / then the ...
element name and a right angle bracket to close > . </body>
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 a paragraph
are giving the <p> (paragraph) element a unique that is being altered by HTML
identifier using the id attribute and changing the color attributes</p>
of the default text using the style attribute.
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 ( . ).
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.
<a href="#id-of-element-to-link-to">Take
me to a different part of the page</a>
Comments
In HTML, comments can be added between an opening
<!-- and closing --> . Content inside of comments will <!-- Main site content -->
not be rendered by browsers, and are usually used to <div>Content</div>
describe a part of code or provide other details.
Comments can span single or multiple lines. <!--
Comments can be
multiple lines long.
-->
Whitespace
Whitespace, such as line breaks, added to an HTML
document between block-level elements will generally be <p>Test paragraph</p>
ignored by the browser and are not added to increase
spacing on the rendered HTML page. Rather, whitespace <!-- The whitespace created by this line,
is added for organization and easier reading of the HTML and above/below this line is ignored by
document itself.
the browser-->
File Path
URL paths in HTML can be absolute paths, like a full URL,
for example: https://developer.mozilla.org/en- <a href="https://developer.mozilla.org/en-
US/docs/Learn or a relative file path that links to a local file US/docs/Web">The URL for this anchor
in the same folder or on the same server, for example: element is an absolute file path.</a>
./style.css . Relative file paths begin with ./ followed
by a path to the local file. ./ tells the browser to look for
<a href="./about.html">The URL for this
the file path from the current folder.
anchor element is a relative file path.
</a>