Inline CSS Example

<!DOCTYPE html>
<html>
  <head>
    <title>Inline CSS Example</title>
  </head>
  <body>
    <h2 style="color: orange; text-align: center;">
      Welcome to Inline CSS Demo
    </h2>
    <p style="font-size: 18px; color: blue;">
      This paragraph uses inline CSS to make the text blue and increase the font
      size.
    </p>
    <div style="background-color: lightgray; padding: 10px;">
      <p style="color: green;">This is a paragraph inside a styled div.</p>
      <p style="color: red; font-weight: bold;">
        This is a bold red paragraph.
      </p>
    </div>
    <button
      style="background-color: green; color: white; padding: 8px 16px; border: none;"
    >
      Click Me
    </button>
  </body>
</html>