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