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