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