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