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