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