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