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