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