Computer Science, asked by shobha290377, 1 month ago

which of the following has the correct CSS syntax
a) h1 (color=red;font-face=impact;)
b) h1 [color:red;font-style:impact;]
c) h1{font-color=red;font=impact;}
d) h1 {color:red;font-family:impact;}​

Answers

Answered by Anonymous
1

Answer:

option d

Explanation:

This syntax is used as follow:

  • Internal CSS

<style>

h1 {color:red;font-family:impact;}

</style>

  • External CSS File

h1 {color:red;font-family:impact;}

Similar questions