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