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