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