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