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