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