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