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