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