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