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