Answers for "external css, internal css and inline css are"

17

external css

<html>
  <head>
    <link rel="stylesheet" type="text/css" href="mystyle.css"></link>
  </head>

  <body>
Posted by: Guest on January-06-2020
1

css using inline styles

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

Code answers related to "external css, internal css and inline css are"

Browse Popular Code Answers by Language