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