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