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