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