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