how to get text to the middle of the page css code example
Example 1: how to put container in center of page
#container
{
width: 400px;
margin-left: auto;
margin-right: auto;
}
Example 2: how to assign something in center inside a div
P { text-align: center }
H2 { text-align: center }