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