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