url css

Solutions on MaxInterview for url css by the best coders in the world

showing results for - "url css"
Brittany
24 Oct 2019
1/* Import a style sheet */
2@import url("https://www.example.com/style.css");
3
4/* Import a font */
5@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
6font-family: 'Roboto', sans-serif;
7
8/* Use an image in background */
9background: url("https://mdn.mozillademos.org/files/16761/star.gif") bottom right repeat-x blue;