HTML Basics - Understanding HTML Tags
HTML Basics - Understanding HTML Tags
Definition:
HTML (Hypertext Markup Language) is the standard markup language used to create web pages.
It provides the structure and content of a web page, defining how the page should be displayed in a
web browser.
It forms the backbone of web pages and provides a framework for organizing and presenting
information.
Here are some basic concepts of HTML:
Tags: HTML documents consist of HTML tags, which are special elements enclosed in angle
brackets (< >).
Tags are used to define the structure and content of a web page.
Each HTML tag serves a specific purpose and can contain text, images, links, and other
multimedia elements.
Elements: An HTML element consists of an opening tag, content, and a closing tag. The opening tag
denotes the beginning of an element, and the closing tag indicates the end of the element. The content
is the information or data contained within the tags.
Example:
<div>
<p>This is a paragraph inside a div.</p>
</div>
Attributes: Tags can have attributes, which provide additional information about the
element. Attributes are added to the opening tag and are specified using key-value pairs.
Example:
<a href="https://www.example.com">This is a link</a>
In this example, href is an attribute that specifies the URL to which the link should navigate
when clicked.
Commonly Used Tags: Some commonly used HTML tags include:
Text Content: HTML allows you to add text content using various tags:
Paragraph (<p>): Used to define paragraphs of text.