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