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