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