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