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