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