Use on the webTotal Use [ 3481 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/b3c10b13e250678e11ccfd7f46e38c2e?family=Transitore+W95+Color+B" 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/b3c10b13e250678e11ccfd7f46e38c2e?family=Transitore+W95+Color+B);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Transitore W95 Color B";
src: url("https://db.onlinewebfonts.com/t/b3c10b13e250678e11ccfd7f46e38c2e.eot");
src: url("https://db.onlinewebfonts.com/t/b3c10b13e250678e11ccfd7f46e38c2e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/b3c10b13e250678e11ccfd7f46e38c2e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/b3c10b13e250678e11ccfd7f46e38c2e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/b3c10b13e250678e11ccfd7f46e38c2e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/b3c10b13e250678e11ccfd7f46e38c2e.svg#Transitore W95 Color B")format("svg");
}
2CSS rules to specify fonts
font-family: "Transitore W95 Color B";