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