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