HTML Training
HTML Training
The <a> anchor element is used to create hyperlinks <!-- Creating text links -->
in an HTML document. The hyperlinks can point to
<a href="http://www.codecademy.com">Visit
other webpages, files on the same server, a location on
the same page, or any other URL via the hyperlink this site</a>
reference attribute, href . The href determines
the location the anchor element points to.
<!-- Creating image links -->
<a href="http://www.codecademy.com">
<img src="logo.jpg">Click this
image
</a>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 1/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
Indentation
<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 <!-- Main site content -->
<!-- and closing --> . Content inside of
<div>Content</div>
comments will not be rendered by browsers, and are
usually used to describe a part of code or provide
other details. <!--
Comments can span single or multiple lines.
Comments can be
multiple lines long.
-->
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 2/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
Whitespace
File Path
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 3/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
HTML
Element Content
The <li> list item element create list items inside: <ol>
Ordered lists <ol>
<li>Head east on Prince St</li>
Unordered lists <ul>
<li>Turn left on Elizabeth</li>
</ol>
<ul>
<li>Cookies</li>
<li>Milk</li>
</ul>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 4/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
The <video> element embeds a media player for <video src="test-video.mp4" controls>
video playback. The src attribute will contain the
Video not supported
URL to the video. Adding the controls attribute
will display video controls in the media player.
</video>
Note: The content inside the opening and closing tag is
shown as a fallback in browsers that don’t support the
element.
The <em> element emphasizes text and browsers will <p>This <em>word</em> will be emphasized
usually italicize the emphasized text by default.
in italics.</p>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 5/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
HTML Structure
Closing Tag
HTML attributes consist of a name and a value using the <elementName name="value"></elementName>
following syntax: name="value" and can be
added to the opening tag of an HTML element to
configure or change the behavior of the element.
The <br> line break element will create a line break A line break haiku.<br>
in text and is especially useful where a division of text is
Poems are a great use case.<br>
required, like in a postal address. The line break
element requires only an opening tag and must not Oh joy! A line break.
have a closing tag.
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 6/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
HTML can use six different levels of heading elements. <h1>Breaking News</h1>
The heading elements are ordered from the highest
<h2>This is the 1st subheading</h2>
level <h1> to the lowest level <h6> .
<h3>This is the 2nd subheading</h3>
...
<h6>This is the 5th subheading</h6>
The <p> paragraph element contains and displays a <p>This is a block of text! Lorem ipsum
block of text.
dolor sit amet, consectetur adipisicing
elit.</p>
Unique ID Attributes
HTML Attributes
HTML attributes are values added to the opening tag of <p id="my-paragraph" style="color:
an element to configure the element or change the
green;">Here’s some text for a paragraph
element’s default behavior. In the provided example, we
are giving the <p> (paragraph) element a unique that is being altered by HTML
identifier using the id attribute and changing the attributes</p>
color of the default text using the style attribute.
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 7/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
alt Attribute
An <img> element can have alternative text via the <img src="path/to/image" alt="text
alt attribute. The alternative text will be displayed if
describing image" />
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 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.
The <span> element is an inline container for text <p><span>This text</span> may be styled
and can be used to group text for styling purposes.
differently than the surrounding text.
However, as <span> is a generic container to
separate pieces of text from a larger body of text, its </p>
use should be avoided if a more semantic element is
available.
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 8/9
18/01/2024, 14:25 Learn HTML: Elements and Structure Cheatsheet | Codecademy
HTML Element
HTML Tag
Print Share
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 9/9