<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
span {
display: inline-block;
height: 150px;
width: 150px;
background: #eb01a5;
background-size: contain;
background-image: url("/build/images/emojin-01.svg"), linear-gradient(pink, purple);
background-image: url("/build/images/emojin-01.svg"), -webkit-gradient(linear, left top, left bottom, from(pink), to(purple));
background-image: url("/build/images/emojin-01.svg"), -moz-linear-gradient(top, pink, purple);
}
</style>
</head>
<body>
<span></span>
</body>
</html>