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