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