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