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