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