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