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