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