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