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