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