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