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