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