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