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