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