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