Basic html Formatting Tag:

XYZ,

An HTML Element is a collection of start and end tags with the content inserted in between them. HTML elements are building blocks of web pages, representing different types of content such as headings, paragraphs, links, and images.

Basic Elements


HTML stands for HyperText Markup Language and it is used to create webpages.
It uses HTML tags and attributes to describe the structure and formatting of a web page. poster HTML consists of various elements ,that are responsible for telling search engines how to display page content. For example, headings, lists, images, links, and more.

For example:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Basic html formatting tag </title>
</head>
<body>
    <h1 align="center">Basic html Formatting Tag:</h1>
     <p align="center"><u>Rishi Chhari</u></p>
     <p>An HTML Element is a collection of start and end tags with the content inserted in between them. HTML elements are building blocks of web pages, representing different types of content such as headings, paragraphs, links, and images.</p>

     <h3>Basic Elements</h3>
     <hr>
     <p>HTML stands for <b>HyperText Markup Language</b> and it is used to create webpages. <br> It uses HTML tags and attributes to describe the structure and <b>formatting of a web page.</b>


       <i> poster HTML consists of various elements,that are responsible for telling <strong>search engines</strong></i>  how to display page content. For example, headings, lists, images, links, and more.</p>
        <img src="https://media.geeksforgeeks.org/wp-content/cdn-uploads/20220401160946/HTML-Basic-Format-768x534.png" height="180" alt="">



</body>
</html>