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