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