Use on the webTotal Use [ 3884 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/097a8c1fe882cc0aa15b3cbefd8e1016?family=Cafe+Rojo" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/097a8c1fe882cc0aa15b3cbefd8e1016?family=Cafe+Rojo);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Cafe Rojo";
src: url("https://db.onlinewebfonts.com/t/097a8c1fe882cc0aa15b3cbefd8e1016.eot");
src: url("https://db.onlinewebfonts.com/t/097a8c1fe882cc0aa15b3cbefd8e1016.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/097a8c1fe882cc0aa15b3cbefd8e1016.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/097a8c1fe882cc0aa15b3cbefd8e1016.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/097a8c1fe882cc0aa15b3cbefd8e1016.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/097a8c1fe882cc0aa15b3cbefd8e1016.svg#Cafe Rojo")format("svg");
}
2CSS rules to specify fonts
font-family: "Cafe Rojo";