Align in HTML

Align

  • Center – Aligns the whole text to the center of the web page
    align = “center”
  • Left – Aligns the whole text to the left side of the web page
    align = “left”
  • Right – Aligns the whole text to the right side of the web page
    align = “right”
  • Justify – Justifies the whole text and also indents the first line
    align = “justify”


Example:
<h1 align = “right” > The content will be in right </h1>
<h1 align = “left” > The content will be in left </h1>
<h1 align = “center” > The content will be in center </h1>

Cristle Academy

Compiler