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