<tagname style="property:value;">
<!DOCTYPE html> <html> <head> <style> body { background-color:powderblue; } </style> </head> <body> <h1>This is a heading</h1> <p style="background-color:blue; color:red;">This is a Paragraph </p> </body> </html>
<h1 style="color:blue;">This is a heading</h1>
Output:
This is a paragraph.
<h1 style="font-family:courier;">This is a heading</h1>
Output:
<p style="font-size:160%;">This is a paragraph.</p>
Output:
This is a paragraph.
<p style="text-align:center;">Centered paragraph.</p>
Output:
Centered paragraph.