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