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