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