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