Get the code of HTML Text Align Property and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>h1 {
text-align: center;
}
h2 {
text-align: left;
color: blue;
}
h3 {
text-align: right;
color: red;
}