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