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