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