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