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