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