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