Hi there, I have a quick and simple question. I am attempting to include a div with a background-image in my *.ejs page file.
<style>
.signPage{
background-image: url("//back.jpg");
width: 98%;
height: 98vh;
top: 1%;
right: 1%;
position: fixed;
border-radius: 20px;
}
The image and the ejs file are located in the same directory. Thank you!