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