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