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