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