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