Text Alignment
We can align the text at left,right,center using <div> tags.
syntax
OutputWe can align the text at left,right,center using <div> tags.
syntax
<div align='left/center/right'>
Example
Example
<html> <head> <title> HTML Alignment </title> </head> <body> <div align='left'>This is left align</div> <div align='right'>This is right align</div> <div align='center'>This is center align</div> </body> </html> |
This is left align
This is right align
This is center align
0 comments:
Post a Comment