So I have the code below.
I am expecting the .container {background-color: red !important;}
to apply color to the HTML page. But for some reason, it is not happening.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<link href="https://fonts.googleapis.com/css2?family=Varela+Round|Alex+Brush|Plus+Jakarta+Sans" rel="stylesheet" />
<style type="stylesheet">
.container { background-color: red !important; }
</style>
</head>
<body>
<div class="container" style="
background: #ffffff url('assets/image.jpg') no-repeat center center;
height: 230px;
"></div>
</body>
</html>