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