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