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