0
In HTML 5 you use CSS to align text to center.
1. Save a document as example: style.css
2. Inside the head section of your html document put <link rel="stylesheet" type="text/css" href="documents name.css">
3 in your css document put
Example: p{
Text-align:center;
}
Now any paragraph you have marked in your html document with the <p></p> will be aligned to center.



