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