Computer Science, asked by Shivam7691, 11 months ago

Which html tag is used to define an internal style sheet?

Answers

Answered by Anonymous
5
style tag is used to define internal stylesheet.

for example: 

<html>
  </head>
    <style>
       body {
         background: purple;  
       }
    </style>
  </head>
</html>
Similar questions