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