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