Answers for "style css inline html"

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
1

css using inline styles

// Change the background color to red
document.body.style.backgroundColor = "red";
Posted by: Guest on November-22-2020

Browse Popular Code Answers by Language