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