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