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