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