Computer Science, asked by anurag7367, 1 year ago

how are internal style sheets used

Answers

Answered by tanu3199
2
The internal style sheet is used to add a unique style for a single document. It is defined in <head> section of the HTML page inside the <style> tag.

tanu3199: plz mrk brainlist
Answered by Anonymous
1

Rather than linking an external .css file, HTML files using an internal stylesheet include a set of rules in their head section. Here is an example:


<head>

<style type="text/css"><style type="text/css">


   h1 {

           color:#fff

           margin-left: 20px;

      }


   p {

       font-family: Arial, Helvetica, Sans Serif;    

      }



</style>

</head>


Similar questions