HTML: Introdução
HTML: Introdução
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.
<ol>
<li>Head east on Prince St</li>
<li>Turn left on Elizabeth</li>
</ol>
<ul>
<li>Cookies</li>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 1/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
<li>Milk</li>
</ul>
The <video> element embeds a media player for video playback. The src
attribute will contain the URL to the video. Adding the controls attribute
will display video controls in the media player.
Note: The content inside the opening and closing tag is shown as a
fallback in browsers that don’t support the element.
The <em> emphasis element emphasizes text and browsers will usually
italicize the emphasized text by default.
The <ol> ordered list element creates a list of items in sequential order.
Each list item appears numbered by default.
<ol>
<li>Preheat oven to 325 F </li>
<li>Drop cookie dough 🍪</li>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 2/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
<div>
<h1>A section of grouped elements</h1>
<p>Here’s some text for the section</p>
</div>
<div>
<h1>Second section of grouped elements</h1>
<p>Here’s some text</p>
</div>
HTML Structure
HTML is organized into a family tree structure. HTML elements can have
parents, grandparents, siblings, children, grandchildren, etc.
<body>
<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
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 3/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
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>
<elementName name="value"></elementName>
The <br> line break element will create a line break in text and is especially
useful where a division of text is required, like in a postal address. The line
break element requires only an opening tag and must not have a closing
tag.
<img src="image.png">
HTML can use six different levels of heading elements. The heading
elements are ordered from the highest level <h1> to the lowest level <h6> .
<h1>Breaking News</h1>
<h2>This is the 1st subheading</h2>
<h3>This is the 2nd subheading</h3>
...
<h6>This is the 5th subheading</h6>
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 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 ( . ).
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 5/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
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 attribute and changing the color of the default text
using the style attribute.
<ul>
<li>Play more music 🎸</li>
<li>Read more books 📚</li>
</ul>
Attribute alt
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 displayed, or if the image has not been
received from the URL.
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 6/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
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.
<body>
<h1>Learn to code with Codecademy :)</h1>
</body>
The <span> element is an inline container for text and can be used to group
text for styling purposes. However, as <span> is a generic container to
separate pieces of text from a larger body of text, its use should be avoided
if a more semantic element is available.
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>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 8/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
<!--Linking a text-->
<a href="codecademy.com">Visit this site</a>
<!--Linking an image-->
<a href="codecademy.com">
<img src="logo.jpg">Click this image</a>
<!DOCTYPE html>
<html>
<head>
<!-- metadata is contained in this element-->
</head>
</html>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 9/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
Indentation
HTML code should be formatted such that the indentation level of text
increases once for each level of nesting.
<div>
<h1>Heading</h1>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
The anchor element <a> can create hyperlinks to different parts of the
same HTML document using the href attribute to point to the desired
location with # followed by the id of the element to link to.
<div>
<p id="id-of-element-to-link-to">A different part of the page!</p>
</div>
!DOCTYPE
! OC ht l
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 10/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
<!DOCTYPE html>
<html>
<!-- I'm a comment -->
</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.
<!--
Comments can be
multiple lines long.
-->
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 organization and easier reading of the HTML
document itself.
<p>Test paragraph</p>
<!-- 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>
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 11/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
The <title> element contains a text that defines the title of an HTML
document. The title is displayed in the browser’s title bar or tab in which
the HTML page is displayed. The <title> element can only be contained
inside a document’s <head> element.
<!DOCTYPE html>
<html>
<head>
<title>Title of the HTML page</title>
</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 paths begin with ./ followed by a path to the
local file. ./ tells the browser to look for the file path from the current
folder.
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 12/13
02/04/2020 Introduction to HTML: Elements and Structure Reference Guide | Codecademy
Related Courses
Course
Introduction to HTML
Learn the basics of HTML5 and start building & editing web pages.
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 13/13