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