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