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