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