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