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