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