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