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