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