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