<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
div {
height: 150px;
width: 150px;
background: lightgreen;
background-image: url("/build/images/emojin-01.svg");/* fallback */
background-image: url("/build/images/emojin-01.svg"), linear-gradient(lightgreen, lightblue);
background-size: 100%;
}
</style>
</head>
<body>
<div></div>
</body>
</html>