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