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