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