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