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