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