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