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