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