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