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