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