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