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