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