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