Answer
Tags are the primary components of the HTML that define how the content is structured, whereas the attributes are used to define the characteristics of the elements.
Tags and attributes are different, and not the same.
Example
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p align="center">Hello World!!</p>
</body>
</html>
In the below example, we have a paragraph defined using the tag <p>
with attribute align="center"
to align the paragraph content in the center of the view.