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