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