After creating a webpage using Bootstrap Studio, I realized that all the style attributes are inline and I want to move them to a separate CSS file. However, I am facing difficulty in doing so as when I add an image using 'background-image:url('img/pic.jpg');', it doesn't show up. I am also unsure about how to convert the following attributes. Here is the code snippet:
<div class="intro-body" style="background: linear-gradient(90deg, rgb(8,1,36) 40%, transparent 49%), url("assets/img/0274207612d515f49012c87803a9e631.gif?h=eaa5e6b00c67acb1f616e82b147e0137") right / contain repeat-x;filter: brightness(120%) contrast(102%) hue-rotate(342deg) invert(0%) saturate(95%);">
For example, if the HTML code is
<div class="intro" style="width:500px;height:400px;">
, the corresponding code for the separate CSS file would be:
.intro
{
width:500px;
height:400px;
}