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