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