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