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