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