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