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