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