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