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