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