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