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