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