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