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