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