html 5 put something in the center code example
Example 1: how to put element in center in html
p {
text-align: center;
}
Example 2: the center tag actually works
The <center> element was deprecated because it defines the presentation of its contents — it does not describe its contents. One method of centering is to set the margin-left and margin-right properties of the element to auto , and then set the parent element's text-align property to center . GuruTheCoder (search it on yt)