Answers for "html tag for inline styles"

CSS
2

html inline style

<!DOCTYPE html>
<html>
  <head>
    <title>Playing with Inline Styles</title>
  </head>
  <body>
    <p style="color:blue;font-size:46px;">
      I'm a big, blue, <strong>strong</strong> paragraph
    </p>
  </body>
</html>
Posted by: Guest on March-18-2022
0

Inline style

<p style="color: purple">This Is Paragraph</p>
Posted by: Guest on April-11-2022

Browse Popular Code Answers by Language