HTML (Hypertext Markup Language) is a markup language used to create web pages. HTML consists of different elements, tags, and attributes that define the structure and content of the web page.
<h1>This is HTML heading one</h1>
<h2>This is HTML heading two</h2>
<h3>This is HTML heading three</h3>
<h4>This is HTML heading four</h4>
<h5>This is HTML heading five</h5>
<h6>This is HTML heading six</h6>
<h7>This is not a heading . its default paragraph.</h7>
**An attribute is a property of an HTML element that provides additional information about the element. Attributes are used to modify the behavior, appearance, or functionality of an HTML element. For example, the “href” attribute is used in the tag to specify the destination of the hyperlink. The “src” attribute is used in the tag to specify the source of the image.**
Here is an example of an HTML tag with its attribute:
<img src="example.jpg" alt="Example image">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Document</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="description" content="">
<meta name="keywords" content="">
</head>
<body>
</body>
</html>