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