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