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