How can I modify my CSS to link to a local file path like C:\xampp\htdocs\Folder
instead of the URL
https://source.unsplash.com/1600x1050/?nature
.
I am currently using Bootstrap 4 and below is my CSS code:
.jumbotron{
background:
linear-gradient(
rgba(0, 0, 250, 0.25),
rgba(125, 250, 250, 0.45)
),
url(https://source.unsplash.com/1600x1050/?nature);
background-repeat: no-repeat;
background-attachment: fixed;
color:white !important;
}
Any assistance would be greatly appreciated. Thank you!