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