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