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