JSFiddle - React, Tailwind, and code Playground
HTML
<div class="title">
I <<span>♥</span>> NY & SF →
</div>
CSS
/* Это почему-то не работает:
.title {font: 40px/1.5 #333 "Times New Roman";}
---------------------------------------------*/
.title {
font-size: 40px;
color: #333;
font-family: "Times New Roman";
}
.title span {
color: #f00;
font-family: "Trebuchet MS";
}