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