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