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