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