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