how to align a text block code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: how to assign something in center inside a div
IMG.displayed {
display: block;
margin-left: auto;
margin-right: auto }
...
<IMG class="displayed" src="..." alt="...">