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