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