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