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