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