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