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