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