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