Website Terminology Glossary
HyperText Markup Language (HTML)
HTML stands for Hypertext Markup Language. It is the standard markup language used for creating web pages and web applications. HTML uses tags to mark up elements within a web page, indicating how those elements should be displayed in a web browser.
Here are some examples of commonly used HTML tags:
<html>
This tag defines the beginning and end of an HTML document.
<head>
This tag contains information about the document, such as the document title, metadata, and links to external resources.
<body>
This tag contains the main content of the web page.
<h1> to <h6>
These tags are used to define headings of different levels of importance, with <h1> being the most important and <h6> being the least important.
<p>
This tag is used to define a paragraph of text.
<a>
This tag is used to define a hyperlink, which allows users to click on a link and navigate to another web page or resource.
<img>
This tag is used to insert an image into the web page.
<ul> and <li>
These tags are used to create an unordered list, with each list item defined by the <li> tag.
<ol> and <li>
These tags are used to create an ordered list, with each list item defined by the <li> tag.
<div> and <span>
These tags are used to group and style other elements within the web page.
These are just a few examples of the many HTML tags available for use in web development. By using these tags and others, developers can create rich and engaging web pages that can be viewed and interacted with by users around the world.
Need Help With HTML ?
