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