Run ยป
<!DOCTYPE html> <html> <head> <style> h1 { text-align: center; color: blue; } h2 { text-align: left; color: green; } h3 { text-align: right; color: orange; } </style> </head> <body> <h1>Center Heading</h1> <h2>Left heading</h2> <h3>Right Heading</h3> <p>The three headings above are aligned center, left and right.</p> </body> </html>