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