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