HTML align Attribute
The align Attribute in HTML is used to is used to specify the alignment of text content of The Element. this attribute is is used in all elements.
Supported Tags:
- <applet>
- <caption>
- <col>
- <colgroup>
- <hr>
- <iframe>
- <img>
- <legend>
- <table>
- <tbody>
- <td>
- <tfoot>
- <th>
- <thead>
- <tr>
Syntax:
<element_name align="left | right | center | justify">
Attribute Values:
- left: It sets the text left-align.
- right: It sets the text right-align.
- center: It sets the text center-align.
- justify: It stretch the text of paragraph to set the width of all lines equal.
Example 1:
html
<!DOCTYPE html><html><head> <title> HTML p align Attribute </title></head><body> <h1>GeeksforGeeks</h1> <h2>HTML p align Attribute</h2> <p align="left"> Left align content</p> <p align="center"> center align content</p> <p align="right"> Right align content</p> </body></html> |
Output:

Example 2:
html
<!DOCTYPE html><html><head> <title>gfg</title> <style type=text/css> p { background-color: gray; margin: 10px; } div { color: white; background-color: 009900; margin: 2px; font-size: 25px; } body { text-align: center; } </style></head><body> <h1>GeeksForGeeks</h1> <h2><div>align Attribute</h2> <div align="center"> div align="center"</div> <div align="left"> div align="left"</div> <div align="right"> div align="right"</div> <div align="justify"> div align="justify"</div></body></html> |
Output:

Supported Browsers:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera


