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