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