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