how to get a text in the center of the page in css code example
Example 1: center text in div container
text-align: center
Example 2: how to assign something in center inside a div
IMG.displayed {
display: block;
margin-left: auto;
margin-right: auto }
...