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