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