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