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