HTML Center Tag
This article discusses Html Center Tag. It would satisfy the requirements for learning.
The <center> tag in HTML was once commonly used to horizontally center content on a web page. However, it has been deprecated in HTML5 and is no longer recommended for use.
The reason for deprecating the <center> tag is that it separates the presentation of the content from its structure and semantics, which goes against the principles of modern web design. Instead, it is recommended to use CSS to control the layout and alignment of content on a web page.
Use of HTML Center Tag
The <center> tag was typically used to center content such as text, images, and other elements within a web page.
That would result in the content being centered horizontally within the page.
The given example shows how we can center a picture and a text using the <center> tag:
Example: 
But now, the same task could be done efficiently using the CSS align center property:
Align text in the center using CSS:
Example
Incompatible with HTML5
In HTML4, text was centered using the <center> Center Tag .