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