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