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