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