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