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