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