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