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