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