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