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