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