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