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