Code Editor Panel
Home
HTML Tutorial
HTML CSS
Run
HTML
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p style="background-color:green;">Paragraph Text Green Background</p> <p style="color:red;">Red color Paragraph Text </p> <p style="font-family:Arial;">Font Text Changes</p> <p style="font-size:24px;">Font Size changes in Text</p> <p style="text-align:center;">Center Pragraph Text</p> </body> </html>
Output