SlideShare a Scribd company logo
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 1/8
Cheatsheets / Learn HTML
Elements and Structure
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 2/8
HTML (HyperText Markup Language) is used to give
content to a web page and instructs web browsers on
how to structure that content.
The content of an HTML element is the information
between the opening and closing tags of an element. <h1>Codecademy is awesome! </h1>
The <li> list item element create list items inside:
<ol>
<li>Head east on Prince St</li>
<li>Turn left on Elizabeth</li>
</ol>
<ul>
<li>Cookies</li>
<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.
<video src="test-video.mp4" controls>
Video not supported
</video>
The <em> emphasis element emphasizes text and
browsers will usually italicize the emphasized text by
default.
<p>This <em>word</em> will be emphasized
in italics.</p>
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>
<li>Bake for 15 min </li>
</ol>
HTML
Element Content
<li> List Item Element
<video> Video Element
<em> Emphasis Element
<ol> Ordered List Element
Ordered lists <ol>
●
Unordered lists <ul>
●
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 3/8
The <div> element is used as a container that divides an
HTML document into sections and is short for “division”.
<div> elements can contain ow content such as
headings, paragraphs, links, images, etc.
<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 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>
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>
HTML attributes consist of a name and a value using the
following syntax: name="value" and can be added to the
opening tag of an HTML element to con gure or change
the behavior of the element.
<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.
A line break haiku.<br>
Poems are a great use case.<br>
Oh joy! A line break.
<div> Div Element
HTML Structure
Closing Tag
Attribute Name and Values
<br> Line Break Element
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 4/8
HTML image <img> elements embed images in
documents. The src attribute contains the image URL
and is mandatory. <img> is an empty element meaning it
should not have a closing tag.
<img src="image.png">
HTML can use six di erent 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>
The <p> paragraph element contains and displays a
block of text. <p>This is a block of text! Lorem ipsum
dolor sit amet, consectetur adipisicing
elit.</p>
In HTML, speci c and unique id attributes can be
assigned to di erent elements in order to di erentiate
between them.
When needed, the id value can be called upon by CSS
and JavaScript to manipulate, format, and perform
speci c 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 ( . ).
<h1 id="A1">Hello World</h1>
HTML attributes are values added to the opening tag of an
element to con gure the element or change the
element’s default behavior. In the provided example, we
are giving the <p> (paragraph) element a unique
identi er using the id attribute and changing the color
of the default text using the style attribute.
<p id="my-paragraph" style="color:
green;">Here’s some text for a paragraph
that is being altered by HTML
attributes</p>
The <ul> unordered list element is used to create a list
of items in no particular order. Each individual list item
will have a bullet point by default.
<ul>
<li>Play more music </li>
<li>Read more books </li>
</ul>
<img> Image Element
<h1>-<h6> Heading Elements
<p> Paragraph Element
Unique ID Attributes
HTML Attributes
<ul> Unordered List Element
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 5/8
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.
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.
<img src="path/to/image" alt="text
describing image" />
The <body> element represents the content of an HTML
document. Content inside <body> tags are rendered on
the web browsers.
Note: There can be only one <body> element in a
document.
<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.
<p><span>This text</span> may be styled
differently than the surrounding text.</p>
The <strong> element highlights important, serious, or
urgent text and browsers will normally render this
highlighted text in bold by default.
<p>This is <strong>important</strong>
text!</p>
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>
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>
alt Attribute
<body> Body Element
<span> Span Element
<strong> Strong Element
HTML Element
HTML Tag
<p> is the opening tag.
●
Hello World! is the content.
●
</p> is the closing tag.
●
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 6/8
The <a> anchor element is used to create hyperlinks in
an HTML document. The hyperlinks can point to other
webpages, les on the same server, a location on the
same page, or any other URL via the hyperlink reference
attribute, href . The href determines the location the
anchor element points to.
<!-- Creating text links -->
<a href="http://www.codecademy.com">Visit
this site</a>
<!-- Creating image links -->
<a href="http://www.codecademy.com">
<img src="logo.jpg">Click this image
</a>
The <head> element contains general information about
an HTML page that isn’t displayed on the page itself. This
information is called metadata and includes things like the
title of the HTML document and links to stylesheets.
<!DOCTYPE html>
<html>
<head>
<!-- Metadata is contained in this
element-->
</head>
</html>
The target attribute on an <a> anchor element
speci es where a hyperlink should be opened. A target
value of "_blank" will tell the browser to open the
hyperlink in a new tab in modern browsers, or in a new
window in older browsers or if the browser has had
settings changed to open hyperlinks in a new window.
<a href="https://www.google.com"
target="_blank">This anchor element links
to google and will open in a new tab or
window.</a>
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
space
per level of nesting.
<div>
<h1>Heading</h1>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
<a> Anchor Element
<head> Head Element
<target> Target Attribute
Indentation
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 7/8
The anchor element <a> can create hyperlinks to
di erent 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>
<a href="#id-of-element-to-link-to">Take
me to a different part of the page</a>
The <html> element, the root of an HTML document,
should be added after the !DOCTYPE declaration. All
content/structure for an HTML document should be
contained between the opening and closing <html> tags.
<!DOCTYPE html>
<html>
<!-- I'm a comment -->
</html>
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 span single or multiple lines.
<!-- Main site content -->
<div>Content</div>
<!--
Comments can be
multiple lines long.
-->
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>
Link to a Di erent Part of the Page #
<html> HTML Element
Comments
Whitespace
2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy
https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 8/8
The <title> element contains a text that de nes 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>
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 le path that links to a local le
in the same folder or on the same server, for example:
./style.css . Relative le paths begin with ./ followed
by a path to the local le. ./ tells the browser to look for
the le path from the current folder.
<a href="https://developer.mozilla.org/en-
US/docs/Web">The URL for this anchor
element is an absolute file path.</a>
<a href="./about.html">The URL for this
anchor element is a relative file path.
</a>
The document type declaration <!DOCTYPE html> is
required as the rst line of an HTML document. The
doctype declaration is an instruction to the browser
about what type of document to expect and which
version of HTML is being used, in this case it’s HTML5.
<!DOCTYPE html>
<title> Title Element
File Path
Document Type Declaration
Ad

More Related Content

What's hot (19)

HyperText Markup Language - HTML
HyperText Markup Language - HTMLHyperText Markup Language - HTML
HyperText Markup Language - HTML
Sun Technlogies
 
CSS
CSSCSS
CSS
BG Java EE Course
 
html tags
html tagshtml tags
html tags
Kunal gupta
 
Html.docx
Html.docxHtml.docx
Html.docx
Noman Ali
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
Sun Technlogies
 
Basic html structure
Basic html structureBasic html structure
Basic html structure
Jhaun Paul Enriquez
 
Html
HtmlHtml
Html
EPAM Systems
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
mmvidanes29
 
Frontend for developers
Frontend for developersFrontend for developers
Frontend for developers
Hernan Mammana
 
Html
HtmlHtml
Html
Vahideh Zarea Gavgani
 
Html basics
Html basicsHtml basics
Html basics
wakeel132
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
Shashank Skills Academy
 
Introduction to WEB HTML, CSS
Introduction to WEB HTML, CSSIntroduction to WEB HTML, CSS
Introduction to WEB HTML, CSS
University of Technology
 
PPT on Basic HTML Tags
PPT on Basic HTML TagsPPT on Basic HTML Tags
PPT on Basic HTML Tags
VinitaPaliwal1
 
Html 5, a gentle introduction
Html 5, a gentle introductionHtml 5, a gentle introduction
Html 5, a gentle introduction
Diego Scataglini
 
Html
HtmlHtml
Html
Sadeek Mohammed
 
Html Basic Tags
Html Basic TagsHtml Basic Tags
Html Basic Tags
Richa Singh
 
Html Tutorial Full PDF Book
Html Tutorial Full PDF BookHtml Tutorial Full PDF Book
Html Tutorial Full PDF Book
Sagar S
 

Similar to Learn html elements and structure cheatsheet codecademy (20)

Day 2 - Web_Development [basic HTML tags and their functionalities].pptx
Day 2 - Web_Development [basic HTML tags and their functionalities].pptxDay 2 - Web_Development [basic HTML tags and their functionalities].pptx
Day 2 - Web_Development [basic HTML tags and their functionalities].pptx
atiqahmad1013
 
Html
HtmlHtml
Html
VARSHAKUMARI49
 
Best Option to learn start here HTML.pptx
Best Option to learn start here HTML.pptxBest Option to learn start here HTML.pptx
Best Option to learn start here HTML.pptx
osmytech57
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
asdfhgjh1
 
Html
HtmlHtml
Html
DrChetanNagar
 
HTML and CSS Basics
HTML and CSS BasicsHTML and CSS Basics
HTML and CSS Basics
Lindsey Meadows
 
PHP HTML CSS Notes
PHP HTML CSS  NotesPHP HTML CSS  Notes
PHP HTML CSS Notes
Tushar Rajput
 
Class Intro / HTML Basics
Class Intro / HTML BasicsClass Intro / HTML Basics
Class Intro / HTML Basics
Shawn Calvert
 
Summary of-xhtml-basics
Summary of-xhtml-basicsSummary of-xhtml-basics
Summary of-xhtml-basics
starlanter
 
Computer application html
Computer application htmlComputer application html
Computer application html
PrashantChahal3
 
HTML Notes And Some Attributes
HTML Notes And Some AttributesHTML Notes And Some Attributes
HTML Notes And Some Attributes
HIFZUR RAHMAN
 
AttributesL3.pptx
AttributesL3.pptxAttributesL3.pptx
AttributesL3.pptx
KrishRaj48
 
Html ppt
Html pptHtml ppt
Html ppt
Ruchi Kumari
 
INTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdfINTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdf
DineshKumar522328
 
Lesson A.1 - Introduction to Web Development.docx
Lesson A.1 - Introduction to Web Development.docxLesson A.1 - Introduction to Web Development.docx
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
1-learning-basic-html-intro-to-web-development.pdf
1-learning-basic-html-intro-to-web-development.pdf1-learning-basic-html-intro-to-web-development.pdf
1-learning-basic-html-intro-to-web-development.pdf
MohamedPalastine
 
Chapter 2 - Introduction to HTML (Basic Structures and Syntax).pptx
Chapter 2 - Introduction to HTML (Basic Structures and Syntax).pptxChapter 2 - Introduction to HTML (Basic Structures and Syntax).pptx
Chapter 2 - Introduction to HTML (Basic Structures and Syntax).pptx
marjunegabon07
 
2 INTRO TO HTML.pptx
2 INTRO TO HTML.pptx2 INTRO TO HTML.pptx
2 INTRO TO HTML.pptx
CHEYSERCHARRESEGATCH1
 
HTML Basics 1 workshop
HTML Basics 1 workshopHTML Basics 1 workshop
HTML Basics 1 workshop
John Allan
 
1.2 Unit 2 Notes - for year 12 html.docx
1.2 Unit 2 Notes - for year 12  html.docx1.2 Unit 2 Notes - for year 12  html.docx
1.2 Unit 2 Notes - for year 12 html.docx
DouglasSimiyu1
 
Day 2 - Web_Development [basic HTML tags and their functionalities].pptx
Day 2 - Web_Development [basic HTML tags and their functionalities].pptxDay 2 - Web_Development [basic HTML tags and their functionalities].pptx
Day 2 - Web_Development [basic HTML tags and their functionalities].pptx
atiqahmad1013
 
Best Option to learn start here HTML.pptx
Best Option to learn start here HTML.pptxBest Option to learn start here HTML.pptx
Best Option to learn start here HTML.pptx
osmytech57
 
Class Intro / HTML Basics
Class Intro / HTML BasicsClass Intro / HTML Basics
Class Intro / HTML Basics
Shawn Calvert
 
Summary of-xhtml-basics
Summary of-xhtml-basicsSummary of-xhtml-basics
Summary of-xhtml-basics
starlanter
 
Computer application html
Computer application htmlComputer application html
Computer application html
PrashantChahal3
 
HTML Notes And Some Attributes
HTML Notes And Some AttributesHTML Notes And Some Attributes
HTML Notes And Some Attributes
HIFZUR RAHMAN
 
AttributesL3.pptx
AttributesL3.pptxAttributesL3.pptx
AttributesL3.pptx
KrishRaj48
 
INTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdfINTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdf
DineshKumar522328
 
Lesson A.1 - Introduction to Web Development.docx
Lesson A.1 - Introduction to Web Development.docxLesson A.1 - Introduction to Web Development.docx
Lesson A.1 - Introduction to Web Development.docx
MarlonMagtibay3
 
1-learning-basic-html-intro-to-web-development.pdf
1-learning-basic-html-intro-to-web-development.pdf1-learning-basic-html-intro-to-web-development.pdf
1-learning-basic-html-intro-to-web-development.pdf
MohamedPalastine
 
Chapter 2 - Introduction to HTML (Basic Structures and Syntax).pptx
Chapter 2 - Introduction to HTML (Basic Structures and Syntax).pptxChapter 2 - Introduction to HTML (Basic Structures and Syntax).pptx
Chapter 2 - Introduction to HTML (Basic Structures and Syntax).pptx
marjunegabon07
 
HTML Basics 1 workshop
HTML Basics 1 workshopHTML Basics 1 workshop
HTML Basics 1 workshop
John Allan
 
1.2 Unit 2 Notes - for year 12 html.docx
1.2 Unit 2 Notes - for year 12  html.docx1.2 Unit 2 Notes - for year 12  html.docx
1.2 Unit 2 Notes - for year 12 html.docx
DouglasSimiyu1
 
Ad

Recently uploaded (20)

How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
Operations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdfOperations Management (Dr. Abdulfatah Salem).pdf
Operations Management (Dr. Abdulfatah Salem).pdf
Arab Academy for Science, Technology and Maritime Transport
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx
contactwilliamm2546
 
Introduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe EngineeringIntroduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe Engineering
Damian T. Gordon
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-3-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 5-3-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 5-3-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-3-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
Unit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdfUnit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdf
KanchanPatil34
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
How to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POSHow to Manage Opening & Closing Controls in Odoo 17 POS
How to Manage Opening & Closing Controls in Odoo 17 POS
Celine George
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulsepulse  ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
pulse ppt.pptx Types of pulse , characteristics of pulse , Alteration of pulse
sushreesangita003
 
2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx2541William_McCollough_DigitalDetox.docx
2541William_McCollough_DigitalDetox.docx
contactwilliamm2546
 
Introduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe EngineeringIntroduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe Engineering
Damian T. Gordon
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
Unit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdfUnit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdf
KanchanPatil34
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
Ad

Learn html elements and structure cheatsheet codecademy

  • 1. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 1/8 Cheatsheets / Learn HTML Elements and Structure
  • 2. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 2/8 HTML (HyperText Markup Language) is used to give content to a web page and instructs web browsers on how to structure that content. The content of an HTML element is the information between the opening and closing tags of an element. <h1>Codecademy is awesome! </h1> The <li> list item element create list items inside: <ol> <li>Head east on Prince St</li> <li>Turn left on Elizabeth</li> </ol> <ul> <li>Cookies</li> <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. <video src="test-video.mp4" controls> Video not supported </video> The <em> emphasis element emphasizes text and browsers will usually italicize the emphasized text by default. <p>This <em>word</em> will be emphasized in italics.</p> 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> <li>Bake for 15 min </li> </ol> HTML Element Content <li> List Item Element <video> Video Element <em> Emphasis Element <ol> Ordered List Element Ordered lists <ol> ● Unordered lists <ul> ●
  • 3. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 3/8 The <div> element is used as a container that divides an HTML document into sections and is short for “division”. <div> elements can contain ow content such as headings, paragraphs, links, images, etc. <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 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> 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> HTML attributes consist of a name and a value using the following syntax: name="value" and can be added to the opening tag of an HTML element to con gure or change the behavior of the element. <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. A line break haiku.<br> Poems are a great use case.<br> Oh joy! A line break. <div> Div Element HTML Structure Closing Tag Attribute Name and Values <br> Line Break Element
  • 4. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 4/8 HTML image <img> elements embed images in documents. The src attribute contains the image URL and is mandatory. <img> is an empty element meaning it should not have a closing tag. <img src="image.png"> HTML can use six di erent 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> The <p> paragraph element contains and displays a block of text. <p>This is a block of text! Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p> In HTML, speci c and unique id attributes can be assigned to di erent elements in order to di erentiate between them. When needed, the id value can be called upon by CSS and JavaScript to manipulate, format, and perform speci c 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 ( . ). <h1 id="A1">Hello World</h1> HTML attributes are values added to the opening tag of an element to con gure the element or change the element’s default behavior. In the provided example, we are giving the <p> (paragraph) element a unique identi er using the id attribute and changing the color of the default text using the style attribute. <p id="my-paragraph" style="color: green;">Here’s some text for a paragraph that is being altered by HTML attributes</p> The <ul> unordered list element is used to create a list of items in no particular order. Each individual list item will have a bullet point by default. <ul> <li>Play more music </li> <li>Read more books </li> </ul> <img> Image Element <h1>-<h6> Heading Elements <p> Paragraph Element Unique ID Attributes HTML Attributes <ul> Unordered List Element
  • 5. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 5/8 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. 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. <img src="path/to/image" alt="text describing image" /> The <body> element represents the content of an HTML document. Content inside <body> tags are rendered on the web browsers. Note: There can be only one <body> element in a document. <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. <p><span>This text</span> may be styled differently than the surrounding text.</p> The <strong> element highlights important, serious, or urgent text and browsers will normally render this highlighted text in bold by default. <p>This is <strong>important</strong> text!</p> 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> 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> alt Attribute <body> Body Element <span> Span Element <strong> Strong Element HTML Element HTML Tag <p> is the opening tag. ● Hello World! is the content. ● </p> is the closing tag. ●
  • 6. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 6/8 The <a> anchor element is used to create hyperlinks in an HTML document. The hyperlinks can point to other webpages, les on the same server, a location on the same page, or any other URL via the hyperlink reference attribute, href . The href determines the location the anchor element points to. <!-- Creating text links --> <a href="http://www.codecademy.com">Visit this site</a> <!-- Creating image links --> <a href="http://www.codecademy.com"> <img src="logo.jpg">Click this image </a> The <head> element contains general information about an HTML page that isn’t displayed on the page itself. This information is called metadata and includes things like the title of the HTML document and links to stylesheets. <!DOCTYPE html> <html> <head> <!-- Metadata is contained in this element--> </head> </html> The target attribute on an <a> anchor element speci es where a hyperlink should be opened. A target value of "_blank" will tell the browser to open the hyperlink in a new tab in modern browsers, or in a new window in older browsers or if the browser has had settings changed to open hyperlinks in a new window. <a href="https://www.google.com" target="_blank">This anchor element links to google and will open in a new tab or window.</a> 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 space per level of nesting. <div> <h1>Heading</h1> <ul> <li>Item 1</li> <li>Item 2</li> </ul> </div> <a> Anchor Element <head> Head Element <target> Target Attribute Indentation
  • 7. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 7/8 The anchor element <a> can create hyperlinks to di erent 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> <a href="#id-of-element-to-link-to">Take me to a different part of the page</a> The <html> element, the root of an HTML document, should be added after the !DOCTYPE declaration. All content/structure for an HTML document should be contained between the opening and closing <html> tags. <!DOCTYPE html> <html> <!-- I'm a comment --> </html> 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 span single or multiple lines. <!-- Main site content --> <div>Content</div> <!-- Comments can be multiple lines long. --> 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> Link to a Di erent Part of the Page # <html> HTML Element Comments Whitespace
  • 8. 2/22/2021 Learn HTML: Elements and Structure Cheatsheet | Codecademy https://www.codecademy.com/learn/learn-html/modules/learn-html-elements/cheatsheet 8/8 The <title> element contains a text that de nes 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> 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 le path that links to a local le in the same folder or on the same server, for example: ./style.css . Relative le paths begin with ./ followed by a path to the local le. ./ tells the browser to look for the le path from the current folder. <a href="https://developer.mozilla.org/en- US/docs/Web">The URL for this anchor element is an absolute file path.</a> <a href="./about.html">The URL for this anchor element is a relative file path. </a> The document type declaration <!DOCTYPE html> is required as the rst line of an HTML document. The doctype declaration is an instruction to the browser about what type of document to expect and which version of HTML is being used, in this case it’s HTML5. <!DOCTYPE html> <title> Title Element File Path Document Type Declaration