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