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