Input
Output
<!DOCTYPE html> <html> <head> <style> p { text-align: left; } h1 { text-align: center; } .right-align { text-align: right; } .justify-align { text-align: justify; } </style> </head> <body> <h1>Welcome to My Website</h1> <p>This paragraph is left-aligned. The text will start from the left edge of the container.</p> <p class="right-align">This paragraph is right-aligned. The text will align to the right edge of the container.</p> <p class="justify-align">This paragraph is justified. The text will stretch and space out so that it fills the entire width of the container, creating a clean edge on both sides.</p> </body> </html>