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