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