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