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