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