Write the programing of Internal Style Sheet in CSS.
Answers
Answered by
8
< ! DOCTYPE html >
< html >
< head >
< title > CSS Example </title>
< style type = "text/CSS" >
P {
Colour : red ;
}
a {
Colour : blue ;
}
</ style>
</ head >
< body > This is an example.
</ body >
</ html >
< html >
< head >
< title > CSS Example </title>
< style type = "text/CSS" >
P {
Colour : red ;
}
a {
Colour : blue ;
}
</ style>
</ head >
< body > This is an example.
</ body >
</ html >
Similar questions