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