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