how center text css code example
Example 1: css text align center
/* Character-based alignment in a table column */
text-align: center;
/* The inline contents are centered within the line box. */
Example 2: center text css
p {
text-align: center;
}