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