Of course it is. No one's going to come and track you down for downloading an image from the internet.
In many cases, images may be under some sort of ownership license like copyright, preventing you from modifying and distributing the image as your own. But again, so many people do it anyway, because no one is going to come knocking on your door because you downloaded an image from the internet.
Answer:
Curly Braces {}.
Explanation:
The syntax for writing a CSS is as following:-
selector {
property : value;
}
CSS is used for providing the style to the HTML page.Such as fonts,background,height,width etc.
For example:
h1{
font:20px;
background:red;
}
The above written CSS is for the h1 tag in HTML.The font size will be 20 pixels and background color will be red.
So we can say that we need to enclose properties and values in curly braces.