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