HTML 1
HTML 1
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 <h1>Codecademy is awesome! �</h1>
closing tags of an element.
<ul>
<li>Cookies</li>
<li>Milk</li>
</ul>
1 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
2 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
HTML Structure
HTML is organized into a family tree structure. HTML elements can have parents, <body>
grandparents, siblings, 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 <body>
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>
3 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
Unique ID Attributes
In HTML, speci�c and unique id attributes can be assigned to di�erent <h1 id="A1">Hello World</h1>
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
( . ).
HTML Attributes
HTML attributes are values added to the opening tag of an element to con�gure <p id="my-paragraph" style="color: green;">Here’s some
the element or change the element’s default behavior. In the provided example,
text for a paragraph that is being altered by HTML
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. attributes</p>
4 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
alt Attribute
An <img> element can have alternative text via the alt attribute. The <img src="path/to/image" alt="text describing image" />
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.
5 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
HTML Element
An HTML element is a piece of content in an HTML document and uses the <p>Hello World!</p>
following syntax: opening tag + content + closing tag. In the code provided:
• <p> is the opening tag.
• Hello World! is the content.
• </p> is the closing tag.
HTML Tag
The syntax for a single HTML tag is an opening angle bracket < followed by the <div>
element name and a closing angle bracket > . Here is an example of an opening
<div> tag.
6 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
Indentation
HTML code should be formatted such that the indentation level of text increases <div>
once for each level of nesting.
<h1>Heading</h1>
It is a common convention to use two or four space per level of nesting.
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
</div>
7 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
<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 --> . <!-- Main site content -->
Content inside of comments will not be rendered by browsers, and are usually
<div>Content</div>
used to describe a part of code or provide other details.
Comments can span single or multiple lines.
<!--
Comments can be
multiple lines long.
-->
8 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
Whitespace
Whitespace, such as line breaks, added to an HTML document between block- <p>Test paragraph</p>
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. <!-- The whitespace created by this line, and above/below
this line is ignored by the browser-->
File Path
URL paths in HTML can be absolute paths, like a full URL, for example: <a href="https://developer.mozilla.org/en-US/docs
https://developer.mozilla.org/en-US/docs/Learn or a relative �le path that
/Web">The URL for this anchor element is an absolute file
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. path.</a>
./ tells the browser to look for the �le path from the current folder.
<a href="./about.html">The URL for this anchor element is
a relative file path.</a>
9 of 10 3/26/2023, 4:49 PM
Firefox about:srcdoc
Print Share
10 of 10 3/26/2023, 4:49 PM