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