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