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