Google News
logo
HTML - Interview Questions
Do Url's Have Quotes Or Not?
Double or single quotes in URLs are optional. The tree following examples are equally valid:
 
body {background: url(imgs/ftl_logo.png) blue}
body {background: url("imgs/ftl_logo.png") blue}
body {background: url('imgs/ftl_logo.png') blue}
Advertisement